From 19f18a0d4837846ea7f1cf07ab5cc97c08f361c4 Mon Sep 17 00:00:00 2001 From: sethkfman Date: Sat, 8 Feb 2025 17:43:32 -0700 Subject: [PATCH] apply labeling ruleset --- .github/workflows/stale-issue-pr.yml | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/stale-issue-pr.yml diff --git a/.github/workflows/stale-issue-pr.yml b/.github/workflows/stale-issue-pr.yml new file mode 100644 index 0000000..0da63ac --- /dev/null +++ b/.github/workflows/stale-issue-pr.yml @@ -0,0 +1,29 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 * * * *' + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/stale@72afbce2b0dbd1d903bb142cebe2d15dc307ae57 + with: + stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity in the last 90 days. It will be closed in 90 days. Thank you for your contributions.' + close-issue-message: 'This issue was closed because there has been no follow activity in 90 days. If you feel this was closed in error please provide evidence on the current production app in a new issue or comment in the existing issue to a maintainer. Thank you for your contributions.' + stale-issue-label: 'stale' + only-issue-labels: 'type-bug' + exempt-issue-labels: 'type-security, feature-request, needs-triage, needs-reproduction, needs-information' + days-before-issue-stale: 90 + days-before-issue-close: 90 + stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity in the last 90 days. It will be closed in 7 days. Thank you for your contributions.' + stale-pr-label: 'stale' + exempt-pr-labels: 'work-in-progress, external-contributor' + close-pr-message: 'This PR was closed because there has been no follow up activity in 7 days. Thank you for your contributions.' + days-before-pr-stale: 90 + days-before-pr-close: 7 + operations-per-run: 200 + \ No newline at end of file