Merge pull request #1661 from crytic/dev-cancel-action-on-commit

Cancel action on new commits
pull/1662/head
Feist Josselin 2 years ago committed by GitHub
commit 485bae9267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/IR.yml
  2. 4
      .github/workflows/black.yml
  3. 4
      .github/workflows/ci.yml
  4. 4
      .github/workflows/detectors.yml
  5. 4
      .github/workflows/docker.yml
  6. 4
      .github/workflows/doctor.yml
  7. 4
      .github/workflows/features.yml
  8. 4
      .github/workflows/linter.yml
  9. 4
      .github/workflows/parser.yml
  10. 4
      .github/workflows/pip-audit.yml
  11. 4
      .github/workflows/pylint.yml
  12. 4
      .github/workflows/read_storage.yml

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: IR tests

@ -15,6 +15,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Black

@ -15,6 +15,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Detectors tests

@ -8,6 +8,10 @@ on:
tags:
- '*'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
docker:
runs-on: ubuntu-latest

@ -12,6 +12,10 @@ on:
- 'slither/tools/doctor/**'
- '.github/workflows/doctor.yml'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
slither-doctor:
runs-on: ${{ matrix.os }}

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Features tests

@ -16,6 +16,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Pylint

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Parser tests

@ -8,6 +8,10 @@ on:
branches: [ dev, master ]
schedule: [ cron: "0 7 * * 2" ]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
audit:
runs-on: ubuntu-latest

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Lint Code Base

@ -13,6 +13,10 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Test slither-read-storage

Loading…
Cancel
Save