Skip to content

Commit

Permalink
fix: don't assign preview domain for renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
omBratteng committed Mar 24, 2024
1 parent a99f9b8 commit 393c72b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-preview-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
assign-preview-domain:
if: ${{ github.actor != 'dependabot[bot]' }}
if: ${{ github.actor != 'dependabot[bot]' || github.actor != 'renovate[bot]' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove-preview-domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
unassign-preview-domain:
if: ${{ github.actor != 'dependabot[bot]' }}
if: ${{ github.actor != 'dependabot[bot]' || github.actor != 'renovate[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Prepare domain
Expand Down

0 comments on commit 393c72b

Please sign in to comment.