Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #561 from Esri/add-stale-removal
Browse files Browse the repository at this point in the history
Add back github action to remove stale issues.
  • Loading branch information
andygup authored Aug 4, 2021
2 parents 317c03b + 37385ed commit de76661
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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."
days-before-stale: 365
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

0 comments on commit de76661

Please sign in to comment.