Skip to content

Commit 0b92938

Browse files
committed
feat: run ci right away for seaubot
1 parent c31aaae commit 0b92938

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

files/.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
with: { clang-format-version: "18" }
2626

2727
test-windows:
28-
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]')
28+
if: >-
29+
(github.event_name == 'pull_request' && (github.event.pull_request.user.login == 'renovate[bot]' || github.event.pull_request.user.login == 'seaubot'))
30+
|| (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'seaubot')
2931
runs-on: windows-latest
3032
steps:
3133
- uses: actions/cache@v4
@@ -41,7 +43,9 @@ jobs:
4143
working-directory: test
4244

4345
test-linux:
44-
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]')
46+
if: >-
47+
(github.event_name == 'pull_request' && (github.event.pull_request.user.login == 'renovate[bot]' || github.event.pull_request.user.login == 'seaubot'))
48+
|| (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'seaubot')
4549
runs-on: ubuntu-latest
4650
steps:
4751
- uses: actions/cache@v4

0 commit comments

Comments
 (0)