From a3b6d310400afee23e2e82a18bba82c816f0b461 Mon Sep 17 00:00:00 2001 From: Andy G Date: Wed, 4 Aug 2021 11:40:24 -0600 Subject: [PATCH] Add back github action to remove stale issues. --- DotNet/.github/workflows/stale.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 DotNet/.github/workflows/stale.yml diff --git a/DotNet/.github/workflows/stale.yml b/DotNet/.github/workflows/stale.yml new file mode 100644 index 0000000..9731ffb --- /dev/null +++ b/DotNet/.github/workflows/stale.yml @@ -0,0 +1,30 @@ +name: "Close stale issues" + +# Controls when the workflow will run. +on: + schedule: + - cron: "0 0 * * *" + # Cron job time seems to be UTC + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # stale: + stale-check: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + 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. If you need additional assistance please contact Esri Technical Support. Thank you for your contributions." + close-issue-message: "This issue has been automatically closed due to inactivity. If you need additional assistance please contact Esri Technical Support." + stale-pr-message: "This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If you need additional assistance please contact Esri Technical Support. Thank you for your contributions." + close-pr-message: "This PR has been automatically closed due to inactivity. If you need additional assistance please contact Esri Technical Support." + only-labels: null + days-before-stale: 1000 + days-before-close: 31 + delete-branch: false + + # Run the processor in debug mode without actually performing any operations on live issues. + # debug-only: true # optional, default is false \ No newline at end of file