Skip to content

Commit 14fb671

Browse files
committed
Update GitHub Actions workflow: change CI skip condition to pull request body and reduce Ruby version matrix
1 parent e168558 commit 14fb671

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
- main
99
jobs:
1010
build:
11-
if: "!contains(github.event.head_commit.message, '[skip ci]')"
11+
if: !contains(github.event.pull_request.body, '[skip ci]')
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
ruby: [ '2.6', '3.0', '3.2', '3.3.4', '3.3.5' ]
15+
ruby: [ '3.0', '3.3.4', '3.3.5' ]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)