We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c24cb commit a79359fCopy full SHA for a79359f
2 files changed
.github/workflows/checker.yml
@@ -6,15 +6,14 @@ jobs:
6
check_commit_message:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
10
- run: |
11
set -x
12
- COMMIT_MESSAGE=$(git log --format=%B -n 1 $GITHUB_SHA)
13
- if [[ $COMMIT_MESSAGE =~ fail ]]; then
14
- echo failing as required
15
- exit 1
16
- fi
+ git log
+ git show
+ git log origin/main..
+ git log origin/main.. | grep fail && exit 1
17
always_passing_job:
18
19
20
- - run: echo "evergreen"
+ - run: echo "evergreen"
file
@@ -0,0 +1 @@
1
+first
0 commit comments