generated from finos/standards-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New workflow to close issues tagged with "meeting" after 14 days.
- Loading branch information
1 parent
bc0de54
commit 19bbf24
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Auto Close Stale Meeting Issues | ||
|
||
on: | ||
schedule: | ||
- cron: '18 22 * * *' | ||
|
||
jobs: | ||
close_stale_meeting: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
days-before-issue-stale: 13 | ||
days-before-issue-close: 1 # Marked as stale the day before closing | ||
stale-issue-label: "stale_meeting" | ||
stale-issue-message: "This issue is stale because it has been open for 13 days with no activity." | ||
close-issue-message: "This issue was closed because it has been inactive for 14 days." | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 | ||
only-labels: "meeting" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |