Skip to content

Bump TriPSs/conventional-changelog-action from 3 to 4 #1

Bump TriPSs/conventional-changelog-action from 3 to 4

Bump TriPSs/conventional-changelog-action from 3 to 4 #1

Workflow file for this run

name: Dependabot Auto-approve
on:
pull_request:
permissions:
pull-requests: write
jobs:
pullrequest:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Get dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve dependabot PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Merge dependabot PR
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}