Skip to content

Commit fcf34fd

Browse files
committed
ci: made ci to run only on ubuntu if PR is by dependabot
1 parent 5f470ef commit fcf34fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020

2121
jobs:
2222
test:
23-
runs-on: ${{ matrix.config.os }}
23+
runs-on: ${{ github.actor == 'dependabot[bot]' && fromJSON('["ubuntu-latest"]') || fromJSON('matrix.config.os') }}
2424
strategy:
2525
matrix:
2626
# Note: GitHub does not host Alpine runners, so we skip testing there for now.

0 commit comments

Comments
 (0)