This action backlog milestoned issues into another issue with the same milestone.
name: Milestone Issue Backlog
on:
issues:
types:
- milestoned
- demilestoned
jobs:
backlog:
name: Backlog
runs-on: ubuntu-20.04
steps:
- name: Backlog
uses: H4M5TER/milestone-backlog@v1
with:
token: ${{ secrets.PAT }}
header: '# Backlog'
label: plan
creator: '*'
token
According to the doc:
Issue owners and users with push access can edit an issue.
You should provide a GitHub Personal Access Token with repo permission (which is suggested to belong to a machine user).
header
optionalWhere the backlog list starts with. Attention that this is used to generate the regex to match the backlogs.
default: # Backlog
label
optionalUse to filter the corresponding issue.
default: plan
creator
optionalUse to filter the corresponding issue.