Update Format.yaml: Change execution condition of workflow

Execute format workflow only if there is `!format` in the commit message.
pull/156/head
shanghai yakisoba chan! 2020-11-28 21:39:27 +09:00 zatwierdzone przez GitHub
rodzic 731eeac087
commit 131cea1215
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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