ci: run one at a time
This commit is contained in:
parent
0cfbb03103
commit
e5b49b6a71
2 changed files with 8 additions and 0 deletions
4
.github/workflows/test.yaml
vendored
4
.github/workflows/test.yaml
vendored
|
@ -8,6 +8,10 @@ on:
|
|||
branches:
|
||||
- "main"
|
||||
|
||||
# Ensure we run only one job at a time.
|
||||
concurrency:
|
||||
group: "elint-${{ github.repository }}-${{ github.ref }}"
|
||||
|
||||
jobs:
|
||||
elint:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
4
.github/workflows/update.yaml
vendored
4
.github/workflows/update.yaml
vendored
|
@ -10,6 +10,10 @@ on:
|
|||
# Run every day at midnight, https://crontab.guru/#@daily.
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
# Ensure updates only run once at a time.
|
||||
concurrency:
|
||||
group: "updater-${{ github.repository }}-${{ github.ref }}"
|
||||
|
||||
jobs:
|
||||
updater:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Reference in a new issue