Fix exclusion criteria for update job

This commit is contained in:
Gavin John 2025-02-13 14:05:20 -08:00
parent 48604885a7
commit 050dbfa47f

View file

@ -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