ci: add workflow to move closed issues to milestone - #154
Conversation
|
🤖 [AI-generated] Hey Romuald Lemesle (@RomuDeuxfois)! 👋 Thanks a lot for opening PR #154 — really appreciate you adding this automation! 🙏 I just had a quick look and I think the description could be enhanced a little to help reviewers get through it faster. I haven't changed anything in your description — just a gentle suggestion:
No rush at all — thanks again for contributing to the project! 🚀 |
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow to automatically move closed issues (and to allow manual testing via workflow_dispatch) into a configured milestone when they match specific labels.
Changes:
- Introduces
.github/workflows/move-closed-issue-to-milestone.ymlto trigger onissues: closedand on manual dispatch. - Runs
FiligranHQ/filigran-ci-tools/actions/move-closed-issue-to-milestonewith configured source labels and a target milestone.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| with: | ||
| source-labels: 'bug, technical improvement' | ||
| target-milestone: '0. Candidate' | ||
| issue-number: ${{ github.event.inputs.issue_number || '' }} |
| - name: Move issue to milestone | ||
| uses: FiligranHQ/filigran-ci-tools/actions/move-closed-issue-to-milestone@main | ||
| with: | ||
| source-labels: 'bug, technical improvement' |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Move issue to milestone | ||
| uses: FiligranHQ/filigran-ci-tools/actions/move-closed-issue-to-milestone@main |
No description provided.