Skip to content

Commit

Permalink
ci: add traceability between PR towards release
Browse files Browse the repository at this point in the history
Add a comment to all PRs that are contained in a specific release.
  • Loading branch information
rjaegers committed Jun 26, 2024
1 parent 58f3506 commit bac0292
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Finalize Release

permissions:
contents: read

on:
release:
types: [published]

jobs:
comment-released-prs:
name: Comment on released PRs
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: rdlf0/comment-released-prs-action@a81897eaea04a5faa8779d28607826ddb033321a # v3.1.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bac0292

Please sign in to comment.