Skip to content

Commit

Permalink
Merge pull request #586 from C0ZEN/feature/split-pr-and-issue-options
Browse files Browse the repository at this point in the history
feat(options): remove common options between the issues and PRs
  • Loading branch information
luketomlinson committed Oct 19, 2021
2 parents b83d488 + 6700440 commit db699ab
Show file tree
Hide file tree
Showing 23 changed files with 6,206 additions and 11,687 deletions.
40 changes: 21 additions & 19 deletions .github/workflows/stale.yml
@@ -1,19 +1,21 @@
name: 'Stale issue handler'
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@main
id: stale
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale: 30
days-before-close: 5
exempt-issue-labels: 'blocked,must,should,keep'
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}
name: 'Stale issue handler'
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@main
id: stale
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-issue-stale: 30
days-before-pr-stale: 30
days-before-issue-close: 5
days-before-pr-close: 5
exempt-issue-labels: 'blocked,must,should,keep'
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}
531 changes: 254 additions & 277 deletions README.md

Large diffs are not rendered by default.

0 comments on commit db699ab

Please sign in to comment.