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

Commit

Permalink
Move stale.yml to the root dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
andygup committed Aug 4, 2021
1 parent 1c3c934 commit 37385ed
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 37385ed

Please sign in to comment.