From: Charles <32498151+charlesomer@users.noreply.github.com> Date: Mon, 12 Jul 2021 21:11:42 +0000 (+0100) Subject: Added automated issue and PR management. X-Git-Tag: 4.1-dev~4^2~48^2^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7fbdd2ef37c30491db6f13db8a80cdbe9ec62e0;p=thirdparty%2Fshairport-sync.git Added automated issue and PR management. --- diff --git a/.github/workflows/actions-stale.yaml b/.github/workflows/actions-stale.yaml new file mode 100644 index 00000000..3b0616f6 --- /dev/null +++ b/.github/workflows/actions-stale.yaml @@ -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