Skip to content

Commit

Permalink
fix: add concurrency checks
Browse files Browse the repository at this point in the history
  • Loading branch information
samrith-s committed Dec 31, 2024
1 parent 81ac09d commit 8ca4ca5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/checks-docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Packages
name: Docs

on:
pull_request:
Expand All @@ -11,6 +11,10 @@ on:
- "LICENSE"
- "CODE_OF_CONDUCT.md"

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

env:
WORKING_DIRECTORY: "docs"

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/checks-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- "LICENSE"
- "CODE_OF_CONDUCT.md"

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

jobs:
typecheck:
name: "Typecheck"
Expand Down

0 comments on commit 8ca4ca5

Please sign in to comment.