Skip to content

Commit

Permalink
allow for skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gjtorikian committed May 7, 2024
1 parent f808aa3 commit 60bee1a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- if: ${{ contains(github.event.pull_request.title, '[skip test]') }}
name: Skip test
shell: bash
run: |
echo "Skipping test workflow because commit message contains `[skip test]`"
exit 0
- uses: actions/checkout@v4

- name: Set up Ruby
Expand Down

0 comments on commit 60bee1a

Please sign in to comment.