You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+10-11
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,19 @@ name: Mark stale issues and pull requests
2
2
3
3
on:
4
4
schedule:
5
-
- cron: "0 12 * * *"
5
+
- cron: "0 12 * * *"
6
6
7
7
jobs:
8
8
stale:
9
-
10
9
runs-on: ubuntu-latest
11
10
12
11
steps:
13
-
- uses: actions/stale@v1
14
-
with:
15
-
repo-token: ${{ secrets.GITHUB_TOKEN }}
16
-
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
17
-
stale-pr-message: 'This pull-request is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
18
-
stale-issue-label: 'no-issue-activity'
19
-
stale-pr-label: 'no-pr-activity'
20
-
days-before-stale: 30
21
-
days-before-close: 5
12
+
- uses: actions/stale@v8
13
+
with:
14
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15
+
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days"
16
+
stale-pr-message: "This pull-request is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days"
| <aname="input_regex_replace_chars"></a> [regex\_replace\_chars](#input\_regex\_replace\_chars)| Terraform regular expression (regex) string.<br>Characters matching the regex will be removed from the ID elements.<br>If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. |`string`|`null`| no |
97
98
| <aname="input_replicas"></a> [replicas](#input\_replicas)| kms\_key\_id:<br> ARN, Key ID, or Alias of the AWS KMS key within the region secret is replicated to.<br>region:<br> Region for replicating the secret. | <pre>list(<br> object(<br> {<br> kms_key_id = string<br> region = string<br> }<br> )<br> )</pre> |`[]`| no |
98
99
| <aname="input_rotation"></a> [rotation](#input\_rotation)| enabled:<br> Whether to create secret rotation rule. <br> Default value: `false`<br>lambda\_arn:<br> Specifies the ARN of the Lambda function that can rotate the secret.<br>automatically\_after\_days:<br> Specifies the number of days between automatic scheduled rotations of the secret. | <pre>object({<br> enabled = optional(bool, false)<br> lambda_arn = string<br> automatically_after_days = number<br> })</pre> | <pre>{<br> "automatically_after_days": 0,<br> "lambda_arn": ""<br>}</pre> | no |
99
-
| <aname="input_secret_version"></a> [secret\_version](#input\_secret\_version)|enabled:<br> Whether to create secret version. <br> Default value: `false`<br>secret\_string:<br> Specifies text data that you want to encrypt and store in this version of the secret. <br> This is required if `secret_binary` is not set.<br>secret\_binary:<br> Specifies binary data that you want to encrypt and store in this version of the secret. <br> This is required if `secret_string` is not set. <br> Needs to be encoded to base64. | <pre>object({<br> enabled = optional(bool, true)<br> secret_string = optional(string)<br> secret_binary = optional(string)<br> })</pre> |`{}`| no |
100
+
| <aname="input_secret_version"></a> [secret\_version](#input\_secret\_version)|ignore\_changes\_enabled:<br> Whether to ignore changes in `secret_string` and `secret_binary`.<br> Default value: `false`<br>secret\_string:<br> Specifies text data that you want to encrypt and store in this version of the secret. <br> This is required if `secret_binary` is not set.<br>secret\_binary:<br> Specifies binary data that you want to encrypt and store in this version of the secret. <br> This is required if `secret_string` is not set. <br> Needs to be encoded to base64. | <pre>object({<br> secret_string= optional(string, "{}")<br> secret_binary = optional(string)<br> ignore_changes_enabled = optional(bool, false)<br> })</pre> |`{}`| no |
100
101
| <aname="input_stage"></a> [stage](#input\_stage)| ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' |`string`|`null`| no |
101
102
| <aname="input_tags"></a> [tags](#input\_tags)| Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br>Neither the tag keys nor the tag values will be modified by this module. |`map(string)`|`{}`| no |
102
103
| <aname="input_tenant"></a> [tenant](#input\_tenant)| ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for |`string`|`null`| no |
0 commit comments