2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-20 02:59:02 +00:00

Merge pull request #169 from frappe/ddavidebor-patch-1

Create stale.yml
This commit is contained in:
Revant Nandgaonkar 2020-03-25 19:17:08 +05:30 committed by GitHub
commit 03baa31104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,19 @@
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-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'