File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4343 GH_TOKEN : ' ${{ steps.mint-github-token.outputs.token }}'
4444 run : |
4545 # Query GitHub API for active, public, non-forked repositories and force single-line JSON to prevent GITHUB_OUTPUT truncation
46- REPOS=$(gh api --paginate /orgs/google-github-actions/repos -q ' [.[] | select(.archived == false and .private == false and .fork == false) | .name]' | jq -c . )
47- echo "repos=${REPOS}" >> "$GITHUB_OUTPUT"
46+ REPOS=$(gh api --paginate /orgs/google-github-actions/repos | jq -s 'add | [.[] | select(.archived == false and .private == false and .fork == false) | .name]' -c )
47+ echo "repos=${REPOS}" >> "$GITHUB_OUTPUT"
4848
4949 # Stage 2: Fan out official actions/stale across all discovered repositories
5050 apply-stale-rules :
You can’t perform that action at this time.
0 commit comments