chore: Skip more actions for automated commits (#3761)

This commit is contained in:
Donny/강동윤 2022-02-27 15:27:15 +09:00 committed by GitHub
parent abc0572557
commit 0ff4ad37c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,8 @@ on:
jobs:
binary-size:
name: Binary size
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -31,6 +33,8 @@ jobs:
benchmark:
name: Performance regression check
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -26,6 +26,8 @@ jobs:
clippy:
name: Clippy
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -8,6 +8,8 @@ env:
jobs:
publish-test:
name: node-api
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -48,6 +50,8 @@ jobs:
integration-test:
name: swc-cli
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -19,6 +19,8 @@ env:
jobs:
test:
name: Test
if: >-
${{ !contains(github.event.head_commit.message, 'chore: ') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2