mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
chore: Skip more actions for automated commits (#3761)
This commit is contained in:
parent
abc0572557
commit
0ff4ad37c3
4
.github/workflows/bench.yml
vendored
4
.github/workflows/bench.yml
vendored
@ -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
|
||||
|
2
.github/workflows/cargo-lints.yml
vendored
2
.github/workflows/cargo-lints.yml
vendored
@ -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
|
||||
|
4
.github/workflows/integration.yml
vendored
4
.github/workflows/integration.yml
vendored
@ -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
|
||||
|
2
.github/workflows/wasm.yml
vendored
2
.github/workflows/wasm.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user