Skip to content

Commit

Permalink
chore: fix CI gate for GH actions bot
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes committed Dec 17, 2024
1 parent d2bd219 commit 126d83a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
build:
# Don't run if the CI is triggered by Release Please
if: ${{ github.actor != 'github-actions[bot]' }}
if: ${{ github.event.pull_request.user.login != 'github-actions[bot]' }}

runs-on: ubuntu-latest
timeout-minutes: 15
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:

lint:
# Don't run if the CI is triggered by Release Please
if: ${{ github.actor != 'github-actions[bot]' }}
if: ${{ github.event.pull_request.user.login != 'github-actions[bot]' }}

runs-on: ubuntu-latest

Expand All @@ -58,7 +58,7 @@ jobs:

test:
# Don't run if the CI is triggered by Release Please
if: ${{ github.actor != 'github-actions[bot]' }}
if: ${{ github.event.pull_request.user.login != 'github-actions[bot]' }}

runs-on: ubuntu-latest

Expand Down

0 comments on commit 126d83a

Please sign in to comment.