forked from Fascinated/docs
start work on actions
This commit is contained in:
parent
0d3918ac45
commit
9e2c1798af
23
.gitea/workflows/close-inactive-issues.yml
Normal file
23
.gitea/workflows/close-inactive-issues.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: Close inactive issues
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
# Runs at 1am every day
|
||||||
|
- cron: "0 1 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
close-issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v5
|
||||||
|
with:
|
||||||
|
days-before-issue-stale: 30
|
||||||
|
days-before-issue-close: 14
|
||||||
|
stale-issue-label: "Status/Abandoned"
|
||||||
|
stale-issue-message: "This issue is abandoned because it has been open for 30 days with no activity."
|
||||||
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as abandoned."
|
||||||
|
days-before-pr-stale: -1
|
||||||
|
days-before-pr-close: -1
|
||||||
|
repo-token: ${{ secrets.GITEA_TOKEN }}
|
Loading…
Reference in New Issue
Block a user