mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 15:02:01 +00:00
(CI) add bounty stale bot
This commit is contained in:
parent
98e2ab94c9
commit
d26ec690e8
22
.github/workflows/bounty_stale.yml
vendored
Normal file
22
.github/workflows/bounty_stale.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: Close inactive bounties
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 8 * * *"
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v9.0.0
|
||||||
|
with: # https://github.com/actions/stale?tab=readme-ov-file#all-options
|
||||||
|
days-before-pr-stale: 7
|
||||||
|
days-before-pr-close: 7
|
||||||
|
only-labels: "bounty"
|
||||||
|
stale-issue-label: "stale"
|
||||||
|
stale-issue-message: "This bounty is stale because it has been opened for 7 days with no activity."
|
||||||
|
close-issue-message: "This bounty was closed because it has been inactive for 7 days since being marked as stale."
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue