Skip to content

Commit

Permalink
New workflow to close issues tagged with "meeting" after 14 days.
Browse files Browse the repository at this point in the history
  • Loading branch information
dogle-scottlogic committed Jul 29, 2024
1 parent bc0de54 commit 19bbf24
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale_meeting.yml
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 }}

0 comments on commit 19bbf24

Please sign in to comment.