Module: kamailio Branch: master Commit: ca613b491412a7ebb6f3d59956a8cbbde1cb725a URL: https://github.com/kamailio/kamailio/commit/ca613b491412a7ebb6f3d59956a8cbbd...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2023-11-07T23:24:45+01:00
github: close-stale-issues
As discussed at Kamailio developers meeting 2023
---
Added: .github/workflows/issue_management.yml
---
Diff: https://github.com/kamailio/kamailio/commit/ca613b491412a7ebb6f3d59956a8cbbd... Patch: https://github.com/kamailio/kamailio/commit/ca613b491412a7ebb6f3d59956a8cbbd...
---
diff --git a/.github/workflows/issue_management.yml b/.github/workflows/issue_management.yml new file mode 100644 index 00000000000..d99a934cdfd --- /dev/null +++ b/.github/workflows/issue_management.yml @@ -0,0 +1,19 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 2 * * *' +permissions: + issues: write + pull-requests: write +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-issue-message: 'This issue is stale because it has been open 6 weeks with no activity. Remove stale label or comment or this will be closed in 2 weeks.' + stale-pr-message: 'This PR is stale because it has been open 6 weeks with no activity. Remove stale label or comment or this will be closed in 2 weeks.' + days-before-stale: 42 + days-before-close: 14 + exempt-issue-labels: bug + remove-stale-when-updated: true