chore(deps): bump hatchet from 85e285d
to 71e01b3
#516
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: auto-merge | |
on: | |
pull_request_target: | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
permissions: | |
pull-requests: write | |
issues: write | |
repository-projects: write | |
contents: write | |
steps: | |
- name: "Metadata" | |
id: metadata | |
uses: dependabot/fetch-metadata@v2.1.0 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: "Enable auto-squash" | |
if: steps.metadata.outputs.package-ecosystem == 'submodules' | |
run: gh pr merge --auto --squash "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Approve (minor & patch)" | |
id: approve | |
if: steps.metadata.outputs.package-ecosystem == 'submodules' | |
run: gh pr review --approve "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |