diff options
author | R <me@hackerc.at> | 2023-04-23 21:18:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-23 21:18:38 +0200 |
commit | 7c6237d93f01b2c50a98a488e40ab7f9a719da35 (patch) | |
tree | 52b5ff740e4809d778e468869077f5c9c3ad645b /.github/workflows/checks.yml | |
parent | fix: try finding a socket, otherwise fail, respect user choice (#1745) (diff) | |
download | forgejo-act-7c6237d93f01b2c50a98a488e40ab7f9a719da35.tar.xz forgejo-act-7c6237d93f01b2c50a98a488e40ab7f9a719da35.zip |
ci: deduplicate running workflows (#1751)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows/checks.yml')
-rw-r--r-- | .github/workflows/checks.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 34ea1d2..b38ee34 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -1,6 +1,10 @@ name: checks on: [pull_request, workflow_dispatch] +concurrency: + cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.ref }} + env: ACT_OWNER: ${{ github.repository_owner }} ACT_REPOSITORY: ${{ github.repository }} |