Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 #9
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: merge dependabot | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| jobs: | |
| merge: | |
| if: ${{github.event.label.name == 'dependabot'}} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install tparse | |
| run: go install github.com/mfridman/tparse@v0.12.2 | |
| - run: | | |
| go mod tidy | |
| - run: | | |
| go test ./... | |
| - run: | | |
| bazel mod tidy | |
| - run: | | |
| bazel build //... | |
| - run: | | |
| git config --local user.name 'Daisuke Maki' | |
| git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| git add . | |
| git commit -m "Run tidy / bazel mod tidy" | |
| git push origin "HEAD:${GITHUB_HEAD_REF}" | |
| gh pr review --approve "$PR_URL" | |
| gh pr merge --auto --merge "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |