Skip to content

Commit f1678b7

Browse files
committed
fixed issue with lable name
1 parent 279d6fd commit f1678b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/monitor-issues/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ runs:
4444
GITHUB_TOKEN: ${{ inputs.github-token }}
4545
STALE_ISSUE_AGE: ${{ inputs.stale-issue-age }}
4646
CLOSE_MESSAGE: ${{ inputs.close-message }}
47-
EXEMPT_ISSUE_LABELS: ${{ inputs.exempt-labels }}
47+
EXEMPT_ISSUE_LABELS: ${{ inputs.exempt-issue-labels }}
4848
STALE_ISSUE_LABEL: ${{ inputs.stale-issue-label }}
4949
DAYS_BEFORE_CLOSE: ${{ inputs.days-before-close }}
5050
ASCENDING: ${{ inputs.ascending }}
@@ -191,6 +191,6 @@ runs:
191191
fi
192192
page=$((page + 1))
193193
done
194-
echo "::set-output name=closed-count::$closed_count"
194+
echo "closed-count=$closed_count" >> $GITHUB_OUTPUT
195195
log_info "Stale issue check complete. Closed $closed_count issues."
196196

.github/workflows/test-monitor-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'Close Stale Issues'
22
on:
33
schedule:
44
- cron: '0 0 * * *' # Run daily at midnight UTC
5-
workflow_dispatch: # Allows manual triggering
5+
workflow_dispatch:
66
inputs:
77
operations-per-run:
88
description: 'Maximum number of operations per run'
@@ -15,7 +15,7 @@ jobs:
1515
issues: write
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: ./.github/actions/close-stale-issues@v1 # Use a specific version tag for stability
18+
- uses: ./.github/actions/close-stale-issues
1919
with:
2020
github-token: ${{ secrets.GITHUB_TOKEN }}
2121
stale-issue-age: 0

0 commit comments

Comments
 (0)