Skip to content

Commit

Permalink
ci: add traceability from PR towards release (#472)
Browse files Browse the repository at this point in the history
ci: add traceability between PR towards release

Add a comment to all PRs that are contained in a specific release.
  • Loading branch information
rjaegers authored Jun 28, 2024
1 parent c8fd21e commit 2cdaa7c
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 2cdaa7c

Please sign in to comment.