We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2cd8dd commit f682cb1Copy full SHA for f682cb1
.github/workflows/stale.yml
@@ -0,0 +1,26 @@
1
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
+#
3
+# You can adjust the behavior by modifying this file.
4
+# For more information, see:
5
+# https://github.com/actions/stale
6
+name: Mark stale issues and pull requests
7
+
8
+on:
9
+ workflow_dispatch:
10
11
+jobs:
12
+ stale:
13
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ issues: write
17
+ pull-requests: write
18
19
+ steps:
20
+ - uses: actions/stale@v5
21
+ with:
22
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
23
+ stale-issue-message: 'Stale issue message'
24
+ stale-pr-message: 'Stale pull request message'
25
+ stale-issue-label: 'no-issue-activity'
26
+ stale-pr-label: 'no-pr-activity'
0 commit comments