-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bundlewatch): honor
SKIP CI
commit message
- [x] Prevent bundle watch from running on release commits by honoring `SKIP CI` commit message. - [x] Minor GH workflow YAML reformatting.
- Loading branch information
1 parent
ccc24f7
commit 2d30f3a
Showing
3 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,9 @@ on: [push] | |
|
||
jobs: | ||
check: | ||
name: Bundle Watch | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'SKIP CI')" | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
Test: | ||
|
||
if: "!contains(github.event.head_commit.message, 'SKIP CI')" | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x, 14.x] | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters