You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
596 B
21 lines
596 B
name: "Mark stale issues" |
|
on: |
|
schedule: |
|
- cron: "30 1 * * *" |
|
|
|
permissions: |
|
contents: read |
|
|
|
jobs: |
|
stale: |
|
permissions: |
|
issues: write # for actions/stale to close stale issues |
|
pull-requests: write # for actions/stale to close stale PRs |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 |
|
with: |
|
stale-issue-message: "This issue was marked as stale due to lack of activity." |
|
days-before-issue-stale: 60 |
|
days-before-close: -1 |
|
exempt-issue-labels: "do-not-stale"
|
|
|