Skip to content

Commit

Permalink
implemented a pipeline for stale bot-doc gen
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyanka-Microsoft committed Dec 18, 2024
1 parent 8d2a208 commit 636e75c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

permissions:
contents: write
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
days-before-stale: 180
days-before-close: 30

0 comments on commit 636e75c

Please sign in to comment.