mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
871 B
YAML
30 lines
871 B
YAML
# Marks issues as stale.
|
|
|
|
name: stale issues
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: "30 1 * * *"
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: 21
|
|
days-before-close: 7
|
|
stale-issue-label: "S-stale"
|
|
stale-pr-label: "S-stale"
|
|
exempt-issue-labels: "M-prevent-stale"
|
|
exempt-pr-labels: "M-prevent-stale"
|
|
stale-issue-message: "This issue is stale because it has been open for 21 days with no activity."
|
|
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
|
|
exempt-all-milestones: true
|
|
exempt-all-assignees: true
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|