chore: bump github.com/tkrajina/typescriptify-golang-structs from 0.1.12-0.20240302095452-72a3fd882f3f to 0.2.0 in the gomod group #285
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
# ref: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#common-dependabot-automations | |
name: Dependabot auto-approve | |
on: | |
pull_request: | |
branches: | |
- feat-multi-module-components | |
permissions: | |
# required to set pr to auto merge | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dependabot: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2 | |
- name: Set to Auto Merge | |
run: | | |
gh pr merge --auto --squash "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{ secrets.VINCENT_PAT }} | |
- name: Approve PR | |
run: | | |
gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{ secrets.VINCENT_PAT }} |