chore(ci): adopt upstream semantic-pull-request and sticky comments - #2841
Merged
DerekRoberts merged 6 commits intoSep 9, 2026
Merged
Conversation
Update pr-validate.yml to call amannn/action-semantic-pull-request directly instead of passing markdown_links to legacy helper. Update pr-open.yml to post deployment links via marocchino/sticky-pull-request-comment and pr-close.yml to clean them up. Update README.md workflow descriptions. Closes bcgov/actions#198
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The pinned actions, permissions, job dependencies, and documentation consistently implement the stated migration.
Pull request overview
Migrates PR validation and deployment notifications to pinned upstream GitHub Actions, supporting bcgov/actions#198.
Changes:
- Directly validates semantic PR titles.
- Posts and removes sticky deployment-link comments.
- Updates workflow documentation.
File summaries
| File | Description |
|---|---|
README.md |
Documents revised workflow behavior. |
.github/workflows/pr-validate.yml |
Uses upstream semantic-title validation. |
.github/workflows/pr-open.yml |
Posts deployment links after deployment. |
.github/workflows/pr-close.yml |
Deletes deployment-link comments on closure. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 0
- Review effort level: Balanced
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Drop the comment job and pull-requests: write permission from pr-close.yml. Update README.md to remove the redundant cleanup description.
…cker in merge workflow" This reverts commit aba9a70.
DerekRoberts
deleted the
chore/migrate-to-upstream-actions-and-sticky-comments
branch
September 9, 2026 01:49
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.
Summary
Migrates
quickstart-openshifttemplates to direct upstream actions for PR validation and deployment link notifications:amannn/action-semantic-pull-requestdirectly inpr-validate.ymlunder the job nameValidate Results, eliminating the redundant downstream aggregator job while preserving naming symmetry (Analysis Results,PR Results,Validate Results). Scopes permissions down topull-requests: read.marocchino/sticky-pull-request-commentinpr-open.yml(posted after deployment succeeds) and removes unnecessary comment cleanup on PR close.Changes
.github/workflows/pr-validate.yml: Migratedvalidatejob to directly invokeamannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50(v6.1.1) namedValidate Results. Dropped separate redundant aggregator job..github/workflows/pr-open.yml: Addedcommentjob usingmarocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88(v3.0.5) to post sticky deployment links when deployments trigger. Addedcommenttoresults.needs..github/workflows/pr-close.yml: Removed redundant comment cleanup job and droppedpull-requests: writepermissions.README.md: Updated workflow documentation descriptions and required status checks list.Closes bcgov/actions#198