Skip to content

Commit

Permalink
Assign closed issues to the release-candidate milestone
Browse files Browse the repository at this point in the history
By doing that we would keep the release-candidate milestone up to date
with things that are done.

Co-authored-by: Georgi Sabev <[email protected]>
  • Loading branch information
danail-branekov and georgethebeatle committed Jan 24, 2025
1 parent 739b1d8 commit 6d82fee
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/assign-closed-issues-to-rc-milestone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Assign closed issues to the `release-candidate` milestone

on:
issues:
types: [closed]

jobs:
update-milestone:
runs-on: ubuntu-latest
name: Assign to release-candidate milestone
steps:
- name: Set Milestone for Issue
uses: hustcer/milestone-action@v2
if: github.event.issue.state == 'closed'
with:
action: bind-issue
milestone: release-candidate
env:
GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 comments on commit 6d82fee

Please sign in to comment.