generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add option for single milestone with no due date
- Loading branch information
Showing
4 changed files
with
52 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
name: 'Add Milestone By Due Date' | ||
description: 'Add the milestone with the current or farthest due date to pull requests and issues' | ||
author: 'Ben Elan' | ||
name: "Add Milestone By Due Date" | ||
description: "Add the milestone with the current or farthest due date to pull requests and issues" | ||
author: "Ben Elan" | ||
branding: | ||
icon: calendar | ||
color: green | ||
inputs: | ||
repo-token: | ||
description: 'Token for the repository. Defaults to `{{ github.token }}`' | ||
description: "Token for the repository. Defaults to `{{ github.token }}`" | ||
default: ${{ github.token }} | ||
required: false | ||
farthest: | ||
description: 'Set this boolean to `true` if you want to add the milestone with the farthest due date. Defaults to `false`, which adds the current milestone.' | ||
description: "Set this boolean to `true` if you want to add the milestone with the farthest due date. Defaults to `false`, which adds the current milestone." | ||
required: false | ||
default: 'false' | ||
default: "false" | ||
overwrite: | ||
description: 'Set this boolean to `true` if you want the action to overwrite existing milestones on issues. Defaults to `false`, which ends the run if the issue already has a milestone.' | ||
description: "Set this boolean to `true` if you want the action to overwrite existing milestones on issues. Defaults to `false`, which ends the run if the issue already has a milestone." | ||
required: false | ||
default: 'false' | ||
default: "false" | ||
single: | ||
description: "Set this boolean to `true` if you only have a single milestone open at a time but don't set the due date. Defaults to `false`, which will not select a milestone if it doesn't have a due date, even if there is only one milestone open." | ||
required: false | ||
default: "false" | ||
runs: | ||
using: 'node20' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters