From 050dbfa47f2358195bd8d7c6c68e6bf3369ef6dc Mon Sep 17 00:00:00 2001 From: Gavin John Date: Thu, 13 Feb 2025 14:05:20 -0800 Subject: [PATCH] Fix exclusion criteria for update job --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index a213e4900..fc801002d 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -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