Compare commits
1 commit
a217a0da72
...
a626a73289
Author | SHA1 | Date | |
---|---|---|---|
a626a73289 |
1 changed files with 13 additions and 0 deletions
13
.gitea/workflows/stale.yml
Normal file
13
.gitea/workflows/stale.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: "Close stale issues and PRs"
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
stale-issue-message: "Message to comment on stale issues. If none provided, will not mark issues stale"
|
||||
stale-pr-message: "Message to comment on stale PRs. If none provided, will not mark PRs stale"
|
Reference in a new issue