chore: Add GitHub Actions workflow to automatically close linked issues upon merging pull requests into the dev branch.#16
Merged
marvinjameserosa merged 1 commit intodevfrom Feb 6, 2026
Conversation
…es upon merging pull requests into the dev branch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Auto Close Issue on Dev Merge
Description
This PR adds a GitHub Actions workflow that automatically closes linked issues when a pull request is merged into the
devbranch. This automation streamlines our development workflow by reducing manual issue management overhead.What's New
dev, any issues referenced with keywords (closes,fixes,resolves, etc.) in the PR description are automatically closedTechnical Details
Workflow Trigger:
pull_requestevents with typeclosedtargeting thedevbranchPermissions:
issues: write- to close issues and add commentspull-requests: read- to read PR body contentSupported Keywords:
The workflow recognizes the following keywords followed by
#<issue_number>:close,closes,closedfix,fixes,fixedresolve,resolves,resolvedExample Usage
In your PR description, simply reference issues like:
Closes #15 Fixes #23Benefits
Note: This workflow only affects the
devbranch. Issues will be closed when PRs merge todev, aligning with our development workflow wheredevis the primary integration branch.Closes #15