]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ci : close inactive issue with workflow (#6053)
authorPierrick Hymbert <redacted>
Sat, 16 Mar 2024 12:20:53 +0000 (13:20 +0100)
committerGitHub <redacted>
Sat, 16 Mar 2024 12:20:53 +0000 (14:20 +0200)
* issues: ci - close inactive issue with workflow

* ci: close issue, change workflow schedule time

.github/workflows/close-issue.yml [new file with mode: 0644]

diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml
new file mode 100644 (file)
index 0000000..bc08a72
--- /dev/null
@@ -0,0 +1,22 @@
+name: Close inactive issues
+on:
+  schedule:
+    - cron: "42 0 * * *"
+
+jobs:
+  close-issues:
+    runs-on: ubuntu-latest
+    permissions:
+      issues: write
+      pull-requests: write
+    steps:
+      - uses: actions/stale@v5
+        with:
+          days-before-issue-stale: 30
+          days-before-issue-close: 14
+          stale-issue-label: "stale"
+          stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
+          close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
+          days-before-pr-stale: -1
+          days-before-pr-close: -1
+          repo-token: ${{ secrets.GITHUB_TOKEN }}