Skip to content

Commit

Permalink
chore(ci): don't cancel-in-progress auto-approve and automerge workfl…
Browse files Browse the repository at this point in the history
…ows (#474)

This did not turn out to be helpful, as it's just leading to more stale
PRs because sometimes the workflow fails to trigger at all.
  • Loading branch information
xiehan authored Jan 16, 2025
1 parent 9e90d29 commit 2e2cfb8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion .github/workflows/auto-approve.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .github/workflows/automerge.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/auto-approve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export class AutoApprove {

(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.head_ref }}",
cancelInProgress: true,
};

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
Expand Down
1 change: 0 additions & 1 deletion src/automerge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class Automerge {

(workflow.concurrency as any) = {
group: "${{ github.workflow }}-${{ github.head_ref }}",
cancelInProgress: true,
};

const maintainerStatuses = `fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]')`;
Expand Down
10 changes: 0 additions & 10 deletions test/__snapshots__/index.test.ts.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2e2cfb8

Please sign in to comment.