build(deps-dev): bump @semantic-release/github from 79dc063 to `258…
#16
This file contains hidden or 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
| # .github/workflows/stale-branches.yml | ||
| name: stale-branches.yml – Delete Stale Branches | ||
| on: | ||
| workflow_dispatch: # Manual trigger from GitHub UI | ||
| schedule: | ||
| - cron: '0 6 * * 0' | ||
| permissions: {} | ||
| jobs: | ||
| stale_branches: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Stale Branches | ||
| permissions: | ||
| issues: write | ||
| contents: write | ||
| uses: crs-k/[email protected] | ||
| with: | ||
| # days-before-delete: 180 | ||
| # comment-updates: false | ||
| # max-issues: 20 | ||
| tag-committer: true | ||
| # stale-branch-label: 'stale branch 🗑️' | ||
| # compare-branches: 'info' | ||
| # branches-filter-regex: '^((?!dependabot))' | ||
| # rate-limit: false | ||
| # pr-check: false | ||
| # dry-run: false | ||
| # ignore-issue-interaction: false | ||
| # include-protected-branches: false | ||
| # include-ruleset-branches: false | ||
| # ignore-commit-messages: '' | ||
| # ignore-committers: '' | ||