Skip to content

Commit 6428364

Browse files
authored
fix: set cancel-in-progress: true (#568)
<!-- 👋 Hi, thanks for sending a PR to template-typescript-node-package! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #556 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview I switched `cancel-in-progress: false` to `true` in the 2 relevant files.
1 parent fe81560 commit 6428364

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
concurrency:
2-
cancel-in-progress: false
2+
cancel-in-progress: true
33
group: ${{ github.workflow }}
44

55
jobs:

src/hydrate/steps/writing/creation/dotGitHub/workflows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function createWorkflows({
110110
}),
111111
"release.yml": createWorkflowFile({
112112
concurrency: {
113-
"cancel-in-progress": false,
113+
"cancel-in-progress": true,
114114
group: "${{ github.workflow }}",
115115
},
116116
name: "Release",

0 commit comments

Comments
 (0)