99jobs :
1010 # Stage 1: Query the organization for all active repositories
1111 fetch-repositories :
12- runs-on : ubuntu-latest
12+ runs-on : ' ubuntu-latest'
1313 outputs :
14- matrix : ${{ steps.set-matrix.outputs.repos }}
14+ matrix : ' ${{ steps.set-matrix.outputs.repos }}'
1515 steps :
1616 - id : ' auth-minty'
1717 name : ' Authenticate to Google Cloud'
4040 - name : ' List active repositories'
4141 id : set-matrix
4242 env :
43- GH_TOKEN : ${{ steps.mint-github-token.outputs.token }}
43+ 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
4646 REPOS=$(gh api --paginate /orgs/google-github-actions/repos -q '[.[] | select(.archived == false and .private == false and .fork == false) | .name]' | jq -c .)
@@ -49,11 +49,11 @@ jobs:
4949 # Stage 2: Fan out official actions/stale across all discovered repositories
5050 apply-stale-rules :
5151 needs : fetch-repositories
52- runs-on : ubuntu-latest
52+ runs-on : ' ubuntu-latest'
5353 strategy :
5454 fail-fast : false
5555 matrix :
56- repo : ${{ fromJson(needs.fetch-repositories.outputs.matrix) }}
56+ repo : ' ${{ fromJson(needs.fetch-repositories.outputs.matrix) }}'
5757
5858 steps :
5959 - id : ' auth-minty'
@@ -81,11 +81,11 @@ jobs:
8181 }
8282
8383 - name : ' Run official stale bot'
84- uses : actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # ratchet:actions/stale@v10.2.0
84+ uses : ' actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f' # ratchet:actions/stale@v10.2.0
8585 env :
8686 GITHUB_REPOSITORY : ' google-github-actions/${{ matrix.repo }}'
8787 with :
88- repo-token : ${{ steps.mint-github-token.outputs.token }}
88+ repo-token : ' ${{ steps.mint-github-token.outputs.token }}'
8989 operations-per-run : 300 # Increased burndown limit for first execution
9090
9191 # Issue configuration (60 days total: 53 inactive + 7 warning)
0 commit comments