Skip to content

Commit

Permalink
馃摑 Add requested permissions (#492)
Browse files Browse the repository at this point in the history
* 馃摑 add requested permissions

* 馃摑 add minor improvement

* 馃摑 add required/recommended perimissions

* 馃摑 fix typo

Co-authored-by: Geoffrey Testelin <geoffrey.testelin@gmail.com>

* 馃摑 update recommended permissions

* 馃摑 update required permissions

* 馃摑 change permissions

* 馃摑 update recommended permissions

* 鉁忥笍 remove typo

Co-authored-by: Geoffrey Testelin <geoffrey.testelin@gmail.com>

Co-authored-by: Geoffrey Testelin <geoffrey.testelin@gmail.com>
  • Loading branch information
flaxel and C0ZEN committed Jun 14, 2021
1 parent 1efddcb commit 92d4fc6
Showing 1 changed file with 45 additions and 12 deletions.
57 changes: 45 additions & 12 deletions README.md
Expand Up @@ -8,6 +8,27 @@ The default configuration will:
- Close the stale issues and pull requests after 7 days of inactivity
- If an update/comment occur on stale issues or pull requests, the stale label will be removed and the timer will restart

## Recommended permissions

For the execution of this action, it must be able to fetch all issues and pull requests from your repository.
This can be achieved with the following [configuration in the action](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions) if the permissions are restricted:

```yaml
permissions:
issues: read
pull-requests: read
```

In addition, based on the provided configuration, the action could require more permission(s) (e.g.: add label, remove label, comment, close, etc.).
You can find more information about the required permissions under the corresponding options that you wish to use.
However, if don't want to bother, you can use these permissions:

```yaml
permissions:
issues: write
pull-requests: write
```

## All options

### List of input options
Expand Down Expand Up @@ -159,55 +180,63 @@ The message that will be added as a comment to the issues when the stale workflo

You can skip the comment sending by omitting the option or by passing an empty string.

Default value: unset
Default value: unset
Required Permission: `issues: write`

#### stale-pr-message

The message that will be added as a comment to the pull requests when the stale workflow marks it automatically as stale with a label.

You can skip the comment sending by omitting the option or by passing an empty string.

Default value: unset
Default value: unset
Required Permission: `pull-requests: write`

#### close-issue-message

The message that will be added as a comment to the issues when the stale workflow closes it automatically after being stale for too long.

Default value: unset
Default value: unset
Required Permission: `issues: write`

#### close-pr-message

The message that will be added as a comment to the pull requests when the stale workflow closes it automatically after being stale for too long.

Default value: unset
Default value: unset
Required Permission: `pull-requests: write`

#### stale-issue-label

The label that will be added to the issues when automatically marked as stale.
If you wish to speedup the stale workflow for the issues, you can add this label manually to mark as stale.

Default value: `Stale`
Default value: `Stale`
Required Permission: `issues: write`

#### close-issue-label

The label that will be added to the issues when closed automatically.
It will be automatically removed if the issues are no longer closed nor locked.

Default value: unset
Default value: unset
Required Permission: `issues: write`

#### stale-pr-label

The label that will be added to the pull requests when automatically marked as stale.
If you wish to speedup the stale workflow for the pull requests, you can add this label manually to mark as stale.

Default value: `Stale`
Default value: `Stale`
Required Permission: `pull-requests: write`

#### close-pr-label

The label that will be added to the pull requests when closed automatically.
It will be automatically removed if the pull requests are no longer closed nor locked.

Default value: unset
Default value: unset
Required Permission: `pull-requests: write`

#### exempt-issue-labels

Expand Down Expand Up @@ -298,13 +327,15 @@ Default value: `30`

Automatically remove the stale label when the issues or the pull requests are updated (based on [GitHub issue](https://docs.github.com/en/rest/reference/issues) field `updated_at`).

Default value: `true`
Default value: `true`
Required Permission: `issues: write` and `pull-requests: write`

#### remove-issue-stale-when-updated

Override [remove-stale-when-updated](#remove-stale-when-updated) but only to automatically remove the stale label when the issues are updated (based on [GitHub issue](https://docs.github.com/en/rest/reference/issues) field `updated_at`).

Default value: unset
Default value: unset
Required Permission: `issues: write`

#### remove-pr-stale-when-updated

Expand Down Expand Up @@ -345,7 +376,8 @@ A comma delimited list of labels to remove when a stale issue or pull request re

Warning: each label results in a unique API call which can drastically consume the limit of [operations-per-run](#operations-per-run).

Default value: unset
Default value: unset
Required Permission: `pull-requests: write`

#### debug-only

Expand Down Expand Up @@ -380,7 +412,8 @@ Default value: unset

If set to `true`, the stale workflow will automatically delete the GitHub branches related to the pull requests automatically closed by the stale workflow.

Default value: `false`
Default value: `false`
Required Permission: `pull-requests: write`

#### exempt-milestones

Expand Down

0 comments on commit 92d4fc6

Please sign in to comment.