mirror of
https://github.com/spf13/cobra
synced 2024-11-05 05:17:12 +00:00
22 lines
580 B
YAML
22 lines
580 B
YAML
|
name: Mark stale issues and pull requests
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 0 * * *"
|
||
|
|
||
|
jobs:
|
||
|
stale:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/stale@v1
|
||
|
with:
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
stale-issue-message: 'This issue is being marked as stale due to a long period of inactivity'
|
||
|
stale-pr-message: 'This PR is being marked as stale due to a long period of inactivity'
|
||
|
stale-issue-label: 'kind/stale'
|
||
|
stale-pr-label: 'kind/stale'
|
||
|
exempt-issue-label: 'kind/stale'
|
||
|
exempt-pr-label: 'kind/stale'
|