chore(deps): update gcr.io/google.com/cloudsdktool/google-cloud-cli:497.0.0-emulators docker digest to 9dcc438 #2313
Workflow file for this run
This file contains 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: fix-fail-notify | |
on: | |
pull_request: | |
merge_group: | |
permissions: read-all | |
jobs: | |
fix-fail-notify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate a token | |
id: generate_token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | |
with: | |
app-id: ${{ secrets.PROJECT_AUTOMATION_APP_ID }} | |
private-key: ${{ secrets.PROJECT_AUTOMATION_PRIVATE_KEY }} | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha || github.event.merge_group.head_sha }} | |
token: ${{steps.generate_token.outputs.token}} | |
- run: bash "${GITHUB_WORKSPACE}/scripts/fix_fail_notify/fix_fail_notify/fix_fail_notify.sh" | |
- uses: dev-hato/actions-diff-pr-management@e5c78b251a69f44f93b2f1398e06b129bcf151ec # v1.2.0 | |
with: | |
github-token: ${{steps.generate_token.outputs.token}} | |
branch-name-prefix: fix-fail-notify | |
pr-title-prefix: fail-notifyが間違ってたので直してあげたよ! |