From: shanghai yakisoba chan! Date: Sat, 28 Nov 2020 12:39:27 +0000 (+0900) Subject: Update Format.yaml: Change execution condition of workflow X-Git-Url: http://git.xmof.duckdns.org/?a=commitdiff_plain;h=131cea121538944e1205e80205f246b0e21ea710;p=DeDRM.git Update Format.yaml: Change execution condition of workflow Execute format workflow only if there is `!format` in the commit message. --- 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