Avoids running duplicated workflows

pull/246/head
Tpt 2 years ago committed by Thomas Tanon
parent 4cea628570
commit 6c6a36ec49
  1. 4
      .github/workflows/artifacts.yml
  2. 4
      .github/workflows/tests.yml

@ -5,6 +5,10 @@ on:
branches: branches:
- main - main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
python_doc: python_doc:
runs-on: ubuntu-latest runs-on: ubuntu-latest

@ -10,6 +10,10 @@ on:
schedule: schedule:
- cron: "0 0 * * 0" - cron: "0 0 * * 0"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs: jobs:
fmt: fmt:
runs-on: ubuntu-latest runs-on: ubuntu-latest

Loading…
Cancel
Save