Skip to content

Bump vue-router from 4.4.5 to 4.5.0 #45

Bump vue-router from 4.4.5 to 4.5.0

Bump vue-router from 4.4.5 to 4.5.0 #45

Workflow file for this run

name: Auto Merge (Dependabot)
on:
pull_request:
branches: 'main'
permissions:
contents: write
pull-requests: write
jobs:
AutoMerge:
name: Approve patch PR
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'traPtitech/traPortfolio-Dashboard'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}