Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] .github/workflows: Add a workflow for dealing with stale issues/prs
@ 2022-03-29  1:52 the-maldridge
  2022-03-29  1:52 ` [PR PATCH] [Updated] " the-maldridge
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: the-maldridge @ 2022-03-29  1:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 698 bytes --]

There is a new pull request by the-maldridge against master on the void-packages repository

https://github.com/the-maldridge/void-packages stale
https://github.com/void-linux/void-packages/pull/36399

.github/workflows: Add a workflow for dealing with stale issues/prs
This PR adds the [stale action](https://github.com/actions/stale) to try and keep an eye on things that are stale due to inactivity.  It will not act on any PR or issue that is assigned.  Right now it won't even make any changes, I just want it to run so we can evaluate what the rough impact would be of switching on a stale PR minder.

A patch file from https://github.com/void-linux/void-packages/pull/36399.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-stale-36399.patch --]
[-- Type: text/x-diff, Size: 1199 bytes --]

From cd46c6438bbfd21fc5dbe21930abc3b5ccde4b8e Mon Sep 17 00:00:00 2001
From: Michael Aldridge <maldridge@voidlinux.org>
Date: Mon, 28 Mar 2022 20:48:50 -0500
Subject: [PATCH] .github/workflows: Add a workflow for dealing with stale
 issues/prs

---
 .github/workflows/stale.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 .github/workflows/stale.yml

diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 000000000000..2c79d3a89b58
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,18 @@
+---
+name: Stale Cleanup
+
+on:
+  schedule:
+    - cron: '30 1 * * *'
+
+jobs:
+  stale:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/stale@v4
+        with:
+          stale-issue-message: 'Issues become stale 90 days after last activity and are closed 7 days after that.  If this issue is still relevant bump it or assign it.'
+          stale-pr-message: 'Pull Requests become stale 90 days after last activity and are closed 7 days after that.  If this pull request is still relevant bump it or assign it.'
+          days-before-stale: 90
+          days-before-close: 7
+          debug-only: true

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-03-30  2:06 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29  1:52 [PR PATCH] .github/workflows: Add a workflow for dealing with stale issues/prs the-maldridge
2022-03-29  1:52 ` [PR PATCH] [Updated] " the-maldridge
2022-03-29  2:08 ` 0x5c
2022-03-29 13:10 ` subnut
2022-03-29 13:10 ` subnut
2022-03-29 13:10 ` subnut
2022-03-29 13:37 ` classabbyamp
2022-03-29 13:51 ` subnut
2022-03-29 18:00 ` Chocimier
2022-03-29 18:16 ` 0x5c
2022-03-30  2:05 ` [PR PATCH] [Updated] " the-maldridge
2022-03-30  2:06 ` [PR PATCH] [Merged]: " the-maldridge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).