Skip to content

Commit 7fc2aa8

Browse files
authored
ci: add milestone-based issue linking workflow (#30)
1 parent 1e14988 commit 7fc2aa8

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Link Issue to Milestone Parent
2+
3+
on:
4+
issues:
5+
types: [milestoned]
6+
7+
jobs:
8+
link-issue:
9+
if: github.event.issue.milestone != null
10+
uses: AllenNeuralDynamics/.github/.github/workflows/util-link-issues-by-milestone.yml@main
11+
with:
12+
issue-number: ${{ github.event.issue.number }}
13+
issue-id: ${{ github.event.issue.id }}
14+
milestone-description: ${{ github.event.issue.milestone.description }}
15+
secrets:
16+
service-token: ${{ secrets.SERVICE_TOKEN }}

0 commit comments

Comments
 (0)