You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Add Milestone By Due Date
v1.3.0
This Action adds the current milestone or the milestone with the farthest due date to issues and pull requests. The Action ignores milestones with no due date and milestones that are past due. Here are successful test runs for current and farthest due milestones.
# .github/workflows/add-milestone.yml
name: Add Milestone
on:
issues:
types: [opened]
branches: [master]
pull_request:
types: [closed]
branches: [master]
jobs:
add:
runs-on: ubuntu-latest
steps:
- uses: benelan/[email protected]
with:
farthest: true # remove this line to add the current milestone
overwrite: true # remove this line to keep an existing milestone
1.3.0 (2022-04-26)
- Add option to overwrite an existing milestone (7ad020e)
- Use UTC time for the current date (7ad020e)
1.2.0 (2022-04-25)
- Allow the workflow to run on any event action (9bce688)
1.1.1 (2021-09-21)
1.1.0 (2021-09-13)
- add option to use the milestone with the farthest due date (9ac638a)