test(sql): set google-beta provider for google_project_service_identi… #41130
Workflow file for this run
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: changelog-checker | |
| permissions: read-all | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| path: repo | |
| - name: Set up Go | |
| uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0 | |
| with: | |
| go-version: '^1.26' | |
| cache-dependency-path: | | |
| repo/tools/go-changelog/go.mod | |
| - name: Build | |
| run: | | |
| cd repo/tools/go-changelog/cmd/changelog-pr-body-check | |
| go build | |
| - name: Check Changelog | |
| env: | |
| GITHUB_OWNER: GoogleCloudPlatform | |
| GITHUB_REPO: magic-modules | |
| GITHUB_TOKEN: ${{github.token}} | |
| run: | | |
| cd repo/tools/go-changelog/cmd/changelog-pr-body-check | |
| ./changelog-pr-body-check ${{github.event.pull_request.number}} |