All inputs
The list of all the inputs.
| Input | Description | Default |
|---|---|---|
| Common | ||
| github-token | A GitHub token used to perform the API calls to GitHub through @actions/github. Usually ${{ secrets.GITHUB_TOKEN }}. | ${{ github.token }} |
| dry-run | A mode where any Data Manipulation Language will be skipped. Useful to debug safely and without risking messing up with your repository. | false |
| Labels | ||
| issue-stale-label | The label that will be added to the issue when it is stale. | stale |
| issue-ignore-all-labels | Allow to ignore the processing of issues that contains any labels. | false |
| issue-ignore-any-labels | Allow to ignore the processing of issues that contains one of those labels (multiline). | |
| pull-request-stale-label | The label that will be added to the pull request when it is stale. | stale |
| pull-request-ignore-all-labels | Allow to ignore the processing of pull requests that contains any labels. | false |
| pull-request-ignore-any-labels | Allow to ignore the processing of pull requests that contains one of those labels (multiline). | |
| Assignees | ||
| issue-ignore-all-assignees | Allow to ignore the processing of issues that contains any assignees. | false |
| issue-ignore-any-assignees | Allow to ignore the processing of issues that contains one of those assignees (multiline). | |
| issue-only-with-assignees | Only allow the processing of issues that contains at least one assignee. | false |
| issue-only-any-assignees | Only allow the processing of issues that contains one of those assignees (multiline). | |
| pull-request-ignore-all-assignees | Allow to ignore the processing of pull requests that contains any assignees. | false |
| pull-request-ignore-any-assignees | Allow to ignore the processing of pull requests that contains one of those assignees (multiline). | |
| pull-request-only-with-assignees | Only allow the processing of pull requests that contains at least one assignee. | false |
| pull-request-only-any-assignees | Only allow the processing of pull requests that contains one of those assignees (multiline). | |
| Projects | ||
| issue-ignore-all-projects | Allow to ignore the processing of issues that contains any projects. | false |
| issue-ignore-any-projects | Allow to ignore the processing of issues that contains one of those projects (multiline). | |
| issue-only-with-projects | Only allow the processing of issues that contains at least one project. | false |
| issue-only-any-projects | Only allow the processing of issues that contains one of those projects (multiline). | |
| pull-request-ignore-all-projects | Allow to ignore the processing of pull requests that contains any projects. | false |
| pull-request-ignore-any-projects | Allow to ignore the processing of pull requests that contains one of those projects (multiline). | |
| pull-request-only-with-projects | Only allow the processing of pull requests that contains at least one project. | false |
| pull-request-only-any-projects | Only allow the processing of pull requests that contains one of those projects (multiline). | |
| Milestones | ||
| issue-ignore-all-milestones | Allow to ignore the processing of issues that contains any milestones. | false |
| issue-ignore-any-milestones | Allow to ignore the processing of issues that contains one of those milestones (multiline). | |
| issue-only-with-milestones | Only allow the processing of issues that contains at least one milestone. | false |
| issue-only-any-milestones | Only allow the processing of issues that contains one of those milestones (multiline). | |
| pull-request-ignore-all-milestones | Allow to ignore the processing of pull requests that contains any milestones. | false |
| pull-request-ignore-any-milestones | Allow to ignore the processing of pull requests that contains one of those milestones (multiline). | |
| pull-request-only-with-milestones | Only allow the processing of pull requests that contains at least one milestone. | false |
| pull-request-only-any-milestones | Only allow the processing of pull requests that contains one of those milestones (multiline). | |
| Comments | ||
| issue-stale-comment | The comment that will be sent once the issue is stale (keep empty to not send a comment). | |
| issue-close-comment | The comment that will be sent once the issue is close (keep empty to not send a comment). | |
| pull-request-stale-comment | The comment that will be sent once the pull request is stale (keep empty to not send a comment). | |
| pull-request-close-comment | The comment that will be sent once the pull request is close (keep empty to not send a comment). | |
| Durations | ||
| issue-days-before-stale | The number of days until the issue is considered as stale. | 30 |
| issue-days-before-close | The number of days until a stale issue is considered as closed. | 10 |
| pull-request-days-before-stale | The number of days until the pull request is considered as stale. | 30 |
| pull-request-days-before-close | The number of days until a stale pull request is considered as closed. | 10 |
| Limiters | ||
| issue-limit-api-queries-count | Limit the quantity of API queries calls performed during the processing of issues (-1 for unlimited). | -1 |
| issue-limit-api-mutations-count | Limit the quantity of API mutations calls performed during the processing of issues (-1 for unlimited). | -1 |
| issue-ignore-before-creation-date | Allow to ignore the processing of issues that were created before this date (ISO 8601). | |
| pull-request-limit-api-queries-count | Limit the quantity of API queries calls performed during the processing of pull requests (-1 for unlimited). | -1 |
| pull-request-limit-api-mutations-count | Limit the quantity of API mutations calls performed during the processing of pull requests (-1 for unlimited). | -1 |
| pull-request-ignore-before-creation-date | Allow to ignore the processing of pull requests that were created before this date (ISO 8601). | |
| pull-request-ignore-draft | Allow to ignore the processing of pull requests that are drafts. | false |
| Others | ||
| issue-processing | Allow to process the issues. | true |
| issue-close-reason | The reason when closing an issue (completed or not planned). | not planned |
| issue-add-labels-after-stale | A list of labels added when the processing stale the issue (multiline). | |
| issue-remove-labels-after-stale | A list of labels removed when the processing stale the issue (multiline). | |
| issue-add-labels-after-close | A list of labels added when the processing close the issue (multiline). | |
| issue-remove-labels-after-close | A list of labels removed when the processing close the issue (multiline). | |
| pull-request-processing | Allow to process the pull requests. | true |
| pull-request-add-labels-after-stale | A list of labels added when the processing stale the pull request (multiline). | |
| pull-request-remove-labels-after-stale | A list of labels removed when the processing stale the pull request (multiline). | |
| pull-request-add-labels-after-close | A list of labels added when the processing close the pull request (multiline). | |
| pull-request-remove-labels-after-close | A list of labels removed when the processing close the pull request (multiline). | |
| pull-request-to-draft-instead-of-stale | Convert the pull request to a draft pull request instead of handling it as a stale candidate. | false |
| pull-request-delete-branch-after-close | Delete the branch when the processing close the pull request. | false |