Skip to content

Commit ad7a3ed

Browse files
committed
Update workflow.
1 parent 42d02aa commit ad7a3ed

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '*'
88
paths-ignore:
99
- '.github/**'
10-
- '!.github/workflows/**'
10+
- '!.github/workflows/ci.yml'
1111
- '.travis.yml'
1212
- '.gitignore'
1313
- 'docs/**'

.github/workflows/issues-cleaner.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
uses: actions/stale@v3
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
16-
stale-issue-message: 'This issue is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_STALE }} days'
17-
stale-pr-message: 'Stale pull request message'
18-
stale-issue-label: 'no-activity'
19-
exempt-issue-labels: 'pending,in-progress'
20-
stale-pr-label: 'no-activity'
21-
exempt-pr-labels: 'pending,in-progress'
16+
stale-issue-message: 'This issue is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_CLOSE }} days'
17+
stale-issue-label: 'stale'
18+
exempt-issue-labels: 'pending, in progress'
19+
stale-pr-message: 'This PR is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_CLOSE }} days'
20+
stale-pr-label: 'stale'
21+
exempt-pr-labels: 'pending, in progress'
2222
days-before-stale: ${{ env.DAYS_TO_STALE }}
2323
days-before-close: ${{ env.DAYS_TO_CLOSE }}
24+
# debug-only: true

0 commit comments

Comments
 (0)