Skip to content

Commit

Permalink
fix(.github): add set +e to should-skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Jan 3, 2021
1 parent 222ac20 commit 27c9750
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
- name: Determine should-skip
id: skip-ci
run: |
set +e
# Get last commit message
LAST_COMMIT_MSG=$(git log -1 --pretty=format:"%s")
! [ -z "$DEBUG" ] && echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
- name: Determine should-skip
id: skip-ci
run: |
set +e
# Get last commit message
LAST_COMMIT_MSG=$(git log -1 --pretty=format:"%s")
! [ -z "$DEBUG" ] && echo "LAST_COMMIT_MSG=$LAST_COMMIT_MSG"
Expand Down

0 comments on commit 27c9750

Please sign in to comment.