]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Create actions-stale.yaml
authorCharles <32498151+charlesomer@users.noreply.github.com>
Tue, 13 Jul 2021 20:43:31 +0000 (21:43 +0100)
committerGitHub <noreply@github.com>
Tue, 13 Jul 2021 20:43:31 +0000 (21:43 +0100)
.github/workflows/actions-stale.yaml [new file with mode: 0644]

diff --git a/.github/workflows/actions-stale.yaml b/.github/workflows/actions-stale.yaml
new file mode 100644 (file)
index 0000000..3b0616f
--- /dev/null
@@ -0,0 +1,16 @@
+name: 'Close stale issues and PRs'
+on:
+  schedule:
+    - cron: '* 8 * * *'
+
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/stale@v3
+        with:
+          stale-issue-message: 'This issue has been inactive for 60 days so will be closed 7 days from now. To prevent this, please remove the "stale" label or post a comment.'
+          stale-pr-message: 'This PR has been inactive for 60 days so will be closed 7 days from now. To prevent this, please remove the "stale" label or post a comment.'
+          # These are the defaults at the time of writing. https://github.com/marketplace/actions/close-stale-issues
+          # days-before-stale: 60
+          # days-before-close: 7