ref(server): Switches common endpoint to use Managed
#13604
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Validate Deployment Pipelines | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - test/pipeline-* | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| files-changed: | |
| name: files-changed | |
| runs-on: ubuntu-latest | |
| # Map a step output to a job output | |
| outputs: | |
| gocd: ${{ steps.changes.outputs.gocd }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check for relevant file changes | |
| uses: getsentry/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 | |
| id: changes | |
| with: | |
| filters: | | |
| gocd: | |
| - 'gocd/**' | |
| - '.github/workflows/validate-pipelines.yml' | |
| validate: | |
| if: needs.files-changed.outputs.gocd == 'true' | |
| needs: files-changed | |
| name: Validate GoCD Pipelines | |
| runs-on: ubuntu-latest | |
| # required for google auth | |
| permissions: | |
| contents: "read" | |
| id-token: "write" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - id: 'auth' | |
| uses: google-github-actions/auth@v3 | |
| with: | |
| workload_identity_provider: 'projects/868781662168/locations/global/workloadIdentityPools/prod-github/providers/github-oidc-pool' | |
| service_account: '[email protected]' | |
| token_format: 'id_token' | |
| id_token_audience: '610575311308-9bsjtgqg4jm01mt058rncpopujgk3627.apps.googleusercontent.com' | |
| id_token_include_email: true | |
| - uses: getsentry/action-gocd-jsonnet@v1 | |
| with: | |
| jb-install: true | |
| jsonnet-dir: gocd/templates | |
| generated-dir: gocd/generated-pipelines | |
| - uses: getsentry/action-validate-gocd-pipelines@v1 | |
| with: | |
| configrepo: relay__master | |
| gocd_access_token: ${{ secrets.GOCD_ACCESS_TOKEN }} | |
| google_oidc_token: ${{ steps.auth.outputs.id_token }} |