public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Commit
Create close_old_issues_and_prs.yml
0d374b74
.github/workflows/close_old_issues_and_prs.yml | 30 ++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
create mode 100644 .github/workflows/close_old_issues_and_prs.yml
Diff
diff --git a/.github/workflows/close_old_issues_and_prs.yml b/.github/workflows/close_old_issues_and_prs.yml
new file mode 100644
index 00000000..0f081980
--- /dev/null
+++ b/.github/workflows/close_old_issues_and_prs.yml
@@ -0,0 +1,30 @@
+name: 'Close stale issues and PRs'
+on:
+ schedule:
+ # Once every day at midnight UTC
+ - cron: "0 0 * * *"
+ workflow_dispatch:
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Mark/Close Stale Issues and Pull Requests 🗑️
+ uses: actions/stale@v3
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ days-before-stale: 60
+ days-before-close: 7
+ stale-issue-message: >
+ This issue has been automatically marked as stale because it has not had
+ recent activity. It will be closed if no further activity occurs.
+ stale-pr-message: >
+ This pull request has been automatically marked as stale because it has not had
+ recent activity. It will be closed if no further activity occurs.
+ exempt-issue-labels: "pinned,security,enhancement"
+ exempt-pr-labels: "pinned,security,enhancement"
+ stale-issue-label: "stale"
+ stale-pr-label: "stale"
+ operations-per-run: "50"
+ #DRY-RUN
+ debug-only: "true"