1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Merge pull request #5151 from appwrite/feat-cancel-in-progress

Update the github workflows to cancel if PR is modified
This commit is contained in:
Torsten Dittmann 2023-02-24 15:22:18 +05:30 committed by GitHub
commit 7d7ac9757b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -1,5 +1,9 @@
name: "CodeQL"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [master]

View file

@ -1,5 +1,9 @@
name: "Linter"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [pull_request]
jobs:
lint:

View file

@ -1,5 +1,9 @@
name: "Tests"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: [pull_request]
jobs:
tests: