mirror of
https://github.com/SeleniumHQ/selenium.git
synced 2026-03-29 06:30:33 +00:00
49 lines
1.9 KiB
YAML
49 lines
1.9 KiB
YAML
# Configuration for Stale - https://github.com/actions/stale
|
|
name: 'Close stale issues'
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '15 10,20 * * *'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
if: github.repository_owner == 'seleniumhq'
|
|
permissions:
|
|
issues: write # for actions/stale to close stale issues
|
|
pull-requests: write # for actions/stale to close stale PRs
|
|
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 14 days.'
|
|
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
|
|
stale-issue-label: 'J-stale'
|
|
stale-pr-label: 'J-stale'
|
|
days-before-stale: 180
|
|
days-before-close: 14
|
|
exempt-all-milestones: true
|
|
- uses: actions/stale@v9
|
|
with:
|
|
close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.'
|
|
stale-issue-label: 'J-awaiting answer'
|
|
days-before-stale: -1
|
|
days-before-close: 14
|
|
labels-to-add-when-unstale: 'A-needs-triaging'
|
|
- uses: actions/stale@v9
|
|
with:
|
|
close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.'
|
|
stale-issue-label: 'J-logging'
|
|
days-before-stale: -1
|
|
days-before-close: 14
|
|
labels-to-add-when-unstale: 'A-needs-triaging'
|
|
- uses: actions/stale@v9
|
|
with:
|
|
close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.'
|
|
stale-issue-label: 'J-issue-template'
|
|
days-before-stale: -1
|
|
days-before-close: 14
|
|
labels-to-add-when-unstale: 'A-needs-triaging'
|