Skip to content

Commit

Permalink
chore: exception for renovate bot (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy authored Jun 21, 2024
1 parent 10c39a7 commit 01155ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with: { clang-format-version: "18" }

test-windows:
if: github.event_name == 'merge_group'
if: (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]') || (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]')
runs-on: windows-latest
steps:
- uses: actions/cache@v4
Expand All @@ -41,7 +41,7 @@ jobs:
working-directory: test

test-linux:
if: github.event_name == 'merge_group'
if: (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]') || (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]')
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v4
Expand Down

0 comments on commit 01155ad

Please # to comment.