Skip to content

Commit be7bb47

Browse files
committed
fix: report not work since job outputs aren't exported from their respective jobs
1 parent 70ee407 commit be7bb47

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: .github/workflows/stale.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- uses: actions/stale@v5
36+
id: staler
3637
with:
3738
operations-per-run: 30
3839
days-before-issue-stale: 60
@@ -71,6 +72,7 @@ jobs:
7172
runs-on: ubuntu-latest
7273
steps:
7374
- uses: actions/stale@v5
75+
id: staler
7476
with:
7577
operations-per-run: 30
7678
days-before-pr-stale: 60
@@ -127,7 +129,7 @@ jobs:
127129
GITHUB_REPO_URL: ${{ format('{0}/{1}', github.server_url, github.repository) }}
128130
GITHUB_ISSUES_URL: ${{ format('{0}/{1}/issues', github.server_url, github.repository) }}
129131
GITHUB_PULL_URL: ${{ format('{0}/{1}/pull', github.server_url, github.repository) }}
130-
STALED_ISSUES: ${{ needs.process-issues.outputs.staled-issues-prs }}
131-
CLOSED_ISSUES: ${{ needs.process-issues.outputs.closed-issues-prs }}
132-
STALED_PRS: ${{ needs.process-prs.outputs.staled-issues-prs }}
133-
CLOSED_PRS: ${{ needs.process-prs.outputs.closed-issues-prs }}
132+
STALED_ISSUES: ${{ needs.process-issues.outputs.staled-issues }}
133+
CLOSED_ISSUES: ${{ needs.process-issues.outputs.closed-issues }}
134+
STALED_PRS: ${{ needs.process-prs.outputs.staled-prs }}
135+
CLOSED_PRS: ${{ needs.process-prs.outputs.closed-prs }}

0 commit comments

Comments
 (0)