DEVOPS-989: use reusable pr_jira_actions workflow#856
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the repository’s PR→JIRA GitHub Actions workflow to use the newer reusable JIRA PR actions workflow from MiraGeoscience/CI-tools, expanding when the automation runs on PR events.
Changes:
- Renamed the workflow/job and switched to
reusable-jira-pr_actions.yml@v3. - Expanded
pull_requesttrigger types to includesynchronize,reopened, andready_for_review. - Reordered the mapped JIRA secrets passed to the reusable workflow.
Comments suppressed due to low confidence (2)
.github/workflows/pr_jira_actions.yml:6
- This workflow no longer sets top-level
permissions: {}. Other workflows in this repo explicitly disable default GITHUB_TOKEN permissions at the workflow level and then grant only the required job-level permissions. Please re-addpermissions: {}near the top (e.g., after theon:block) to keep least-privilege behavior consistent and avoid accidentally granting defaults if more jobs are added later.
.github/workflows/pr_jira_actions.yml:6 - Now that this workflow runs on
synchronize/reopened/ready_for_reviewevents, multiple runs can overlap on rapid pushes, potentially causing duplicated JIRA updates/comments. Consider adding aconcurrencyblock (as done in other workflows like.github/workflows/python_analysis.yml) withcancel-in-progress: truekeyed by workflow + head ref to ensure only the latest run for a PR executes.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #856 +/- ##
===========================================
- Coverage 91.18% 91.14% -0.05%
===========================================
Files 115 115
Lines 10272 10272
Branches 1898 1898
===========================================
- Hits 9367 9362 -5
- Misses 483 487 +4
- Partials 422 423 +1 🚀 New features to boost your workflow:
|
sebhmg
approved these changes
Mar 19, 2026
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.
DEVOPS-989 - Migrate repositories to use Jira actions github workflow