mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-23 06:16:43 +00:00
Set defaults.
This commit is contained in:
parent
b29bfe9957
commit
1128faa949
@ -11,21 +11,28 @@ inputs:
|
|||||||
REPO:
|
REPO:
|
||||||
description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)"
|
description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "${{ github.repository }}"
|
||||||
BEFORE:
|
BEFORE:
|
||||||
description: "The SHA of the last pushed commit (automatically set)"
|
description: "The SHA of the last pushed commit (automatically set)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "${{ github.event.before }}"
|
||||||
SHA:
|
SHA:
|
||||||
description: "The SHA of the latest commit (automatically set)"
|
description: "The SHA of the latest commit (automatically set)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "${{ github.sha }}"
|
||||||
TOKEN:
|
TOKEN:
|
||||||
description: "The GitHub access token to allow us to retrieve, create and update issues (automatically set)"
|
description: "The GitHub access token to allow us to retrieve, create and update issues (automatically set)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
LABEL:
|
LABEL:
|
||||||
description: "The label that will be used to identify TODO comments (e.g. # TODO for Python)"
|
description: "The label that will be used to identify TODO comments (e.g. # TODO for Python)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "# TODO"
|
||||||
COMMENT_MARKER:
|
COMMENT_MARKER:
|
||||||
description: "The marker used to signify a line comment in your code (e.g. # for Python)"
|
description: "The marker used to signify a line comment in your code (e.g. # for Python)"
|
||||||
required: true
|
required: true
|
||||||
|
default: "#"
|
||||||
CLOSE_ISSUES:
|
CLOSE_ISSUES:
|
||||||
description: "Optional input that specifies whether to attempt to close an issue when a TODO is removed (default: true)"
|
description: "Optional input that specifies whether to attempt to close an issue when a TODO is removed (default: true)"
|
||||||
required: false
|
required: false
|
||||||
|
default: "true"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user