Skip to content

FE-006: Add concurrency cancellation for redundant PR runs#1821

Merged
RUKAYAT-CODER merged 1 commit into
EarnQuestOne:mainfrom
Tobiloba0:issue-795-logging
Jun 27, 2026
Merged

FE-006: Add concurrency cancellation for redundant PR runs#1821
RUKAYAT-CODER merged 1 commit into
EarnQuestOne:mainfrom
Tobiloba0:issue-795-logging

Conversation

@Tobiloba0

Copy link
Copy Markdown
Contributor

Closes #795

Description

This PR implements concurrency cancellation for GitHub Actions workflows to prevent redundant PR runs from consuming resources unnecessarily.

Previously, multiple workflow runs could continue executing when new commits were pushed to the same pull request. This change ensures that older in-progress runs are automatically cancelled when a newer run is triggered.

Changes Made

  • Added GitHub Actions concurrency configuration to PR workflows.
  • Enabled automatic cancellation of outdated workflow runs using cancel-in-progress: true.
  • Applied concurrency grouping based on workflow name and Git reference.

Implementation

Added:

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

@Tobiloba0 Tobiloba0 requested a review from RUKAYAT-CODER as a code owner June 27, 2026 02:39
@drips-wave

drips-wave Bot commented Jun 27, 2026

Copy link
Copy Markdown

@Tobiloba0 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits.

You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀

Learn more about application limits

@RUKAYAT-CODER

Copy link
Copy Markdown
Contributor

Thank you for contributing to the project

@RUKAYAT-CODER RUKAYAT-CODER merged commit 2fcadc4 into EarnQuestOne:main Jun 27, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[FE-006] Add concurrency cancellation for redundant PR runs

2 participants