Skip to content

Commit

Permalink
GHA: use PAT to allow dependabot to run retry
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Jul 27, 2024
1 parent 42d5036 commit e171597
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/saltbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ jobs:
description: "Run attempt: ${{ github.run_attempt }}"

retry-on-failure:
if: failure() && github.actor != 'dependabot[bot]' && fromJSON(github.run_attempt) < 3
if: failure() && fromJSON(github.run_attempt) < 3
needs: [install, webhook]
runs-on: ubuntu-latest
steps:
- env:
GH_REPO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: gh workflow run retry.yml -F run_id=${{ github.run_id }}
6 changes: 3 additions & 3 deletions roles/overseerr/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ overseerr_dns_proxy: "{{ dns.proxied }}"

overseerr_traefik_sso_middleware: ""
overseerr_traefik_middleware_default: "{{ traefik_default_middleware
+ (',themepark-' + lookup('vars', overseerr_name + '_name', default=overseerr_name)
if (overseerr_themepark_enabled and global_themepark_plugin_enabled)
else '') }}"
+ (',themepark-' + lookup('vars', overseerr_name + '_name', default=overseerr_name)
if (overseerr_themepark_enabled and global_themepark_plugin_enabled)
else '') }}"
overseerr_traefik_middleware_custom: ""
overseerr_traefik_certresolver: "{{ traefik_default_certresolver }}"
overseerr_traefik_enabled: true
Expand Down

0 comments on commit e171597

Please sign in to comment.