summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorshanghai yakisoba chan! <[email protected]>2020-11-28 21:39:27 +0900
committerGitHub <[email protected]>2020-11-28 21:39:27 +0900
commit131cea121538944e1205e80205f246b0e21ea710 (patch)
treee5abea86f309d2de5edc961114d49f9ce4d9fc2b /.github
parent731eeac087deef56977f394406fcf71cace25481 (diff)
Update Format.yaml: Change execution condition of workflow
Execute format workflow only if there is `!format` in the commit message.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/Format.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/Format.yaml b/.github/workflows/Format.yaml
index 32e9279..32f0226 100644
--- a/.github/workflows/Format.yaml
+++ b/.github/workflows/Format.yaml
@@ -4,7 +4,7 @@ on:
branches: master
jobs:
Format:
- if: "!contains(github.event.head_commit.message, '!format')"
+ if: "contains(github.event.head_commit.message, '!format')"
runs-on: ubuntu-20.04
strategy:
fail-fast: false