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 3cf02ac commit 4c03002Copy full SHA for 4c03002
1 file changed
.github/workflows/main-job.yml
@@ -26,7 +26,7 @@ on:
26
# job
27
jobs:
28
ci:
29
- if: "! contains(github.event.head_commit.message, '[skip ci]')"
+ if: ! contains(github.event.head_commit.message, '[skip ci]')
30
runs-on: ${{ matrix.os }}
31
32
# Launch a matrix of jobs
@@ -192,7 +192,7 @@ jobs:
192
NJOBS: "2"
193
194
- name: Set environment variables for output comparison
195
- if: "! contains(github.event.head_commit.message, '[skip output comparison]')"
+ if: ! contains(github.event.head_commit.message, '[skip output comparison]')
196
run: |
197
echo "C_FLG=-DMMG_COMPARABLE_OUTPUT" >> "$GITHUB_ENV"
198
echo "MMG_ERROR_RULE=\"COMMAND_ERROR_IS_FATAL ANY\"" >> "$GITHUB_ENV"
0 commit comments