Fix exclusion criteria for update job
This commit is contained in:
parent
48604885a7
commit
050dbfa47f
1 changed files with 1 additions and 1 deletions
2
.github/workflows/update.yml
vendored
2
.github/workflows/update.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
update_nur:
|
||||
runs-on: ubuntu-latest
|
||||
# Don't trigger when the last push was done by a bot
|
||||
if: github.event_name != 'push' || endsWith(github.actor, '[bot]')
|
||||
if: github.event_name != 'push' || !endsWith(github.actor, '[bot]')
|
||||
steps:
|
||||
- id: get_workflow_token
|
||||
uses: peter-murray/workflow-application-token-action@v4.0.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue