We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf0adaa commit ac68222Copy full SHA for ac68222
1 file changed
.github/workflows/centralized-stale.yml
@@ -43,8 +43,8 @@ jobs:
43
GH_TOKEN: '${{ steps.mint-github-token.outputs.token }}'
44
run: |
45
# 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 | jq -s 'add | [.[] | select(.archived == false and .private == false and .fork == false) | .name]' -c)
47
-echo "repos=${REPOS}" >> "$GITHUB_OUTPUT"
+ REPOS=$(gh api --paginate /orgs/google-github-actions/repos | jq -s 'add | [.[] | select(.archived == false and .private == false and .fork == false) | .name]' -c)
+ echo "repos=${REPOS}" >> "$GITHUB_OUTPUT"
48
49
# Stage 2: Fan out official actions/stale across all discovered repositories
50
apply-stale-rules:
0 commit comments