1
0
Fork 0
tt9/.github/workflows/close-stale-issues.yml
Dimo Karaivanov a419a6c4cb
GitHub actions (#167)
* added a github workflow for closing stale issues

* added github PR validation workflows

* fixed the dictionary validator missing digits in words

* fixed the build failing completely when there no git tags

* updated androidx.room 2.4.3 -> 2.5.0
2023-01-31 17:58:40 +02:00

22 lines
709 B
YAML

name: Close inactive issues
on:
schedule:
- cron: "21 0 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v4
with:
days-before-issue-stale: 100
days-before-issue-close: 100
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 100 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 100 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}