-
-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christian König <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
days-before-stale: 30 | ||
days-before-close: 5 | ||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.' | ||
stale-issue-label: $stale_label | ||
stale-issue-label: ${{ env.stale_label}} | ||
exempt-issue-labels: 'Fixed in next release, Bug, Bug:Confirmed, Bugfix in progress, documentation needed, internal' | ||
exempt-all-issue-assignees: true | ||
operations-per-run: 300 | ||
|
@@ -42,7 +42,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Remove 'stale' label | ||
run: gh issue edit ${{ github.event.issue.number }} --remove-label $stale_label | ||
run: gh issue edit ${{ github.event.issue.number }} --remove-label ${{ env.stale_label}} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|