Skip to content

Commit

Permalink
fix: added concurrency handler for CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed Oct 4, 2024
1 parent 7907812 commit d1e3c1e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: ci
on:
push:
branches: [master]
paths:
- '.github/workflows/ci.yaml'
paths: ['.github/workflows/ci.yaml']
pull_request:
branches: [master]
types:
Expand All @@ -22,6 +21,10 @@ on:
schedule:
- cron: '0 9 * * 5'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
ci:
permissions:
Expand Down

0 comments on commit d1e3c1e

Please sign in to comment.