This is an automated email from the ASF dual-hosted git repository. vorburger pushed a commit to branch vorburger-stale-action in repository https://gitbox.apache.org/repos/asf/fineract.git
commit a8c0e97217616175a7a8f54ae598701115d99a46 Author: Michael Vorburger ⛑️ <vorbur...@apache.org> AuthorDate: Mon Jan 13 09:13:31 2020 +0100 add GitHub Action to autoclose stale pull requests It will automatically add a comment after 30 days, and then another 30 days later (so after a total of 60 days of inactivity) automatically close Pull Requests. https://github.com/marketplace/actions/close-stale-issues https://github.com/actions/stale/blob/master/action.yml https://github.com/actions/stale --- .github/workflows/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..252f296 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +# https://github.com/marketplace/actions/close-stale-issues +# https://github.com/actions/stale/blob/master/action.yml +# https://github.com/actions/stale +name: Mark stale issues and pull requests +on: + schedule: + - cron: "0 0 * * *" +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + # stale-issue-message: 'Stale issue message' + # stale-issue-label: 'no-issue-activity' + stale-pr-message: 'This pull request seems to be stale. Are you still planning to work on it? We will automatically close it in 30 days.' + stale-pr-label: 'stale' + days-before-stale: 30 + days-before-close: 30