Skip to content

build(deps): Bump actions/upload-artifact from 4 to 7 #3

build(deps): Bump actions/upload-artifact from 4 to 7

build(deps): Bump actions/upload-artifact from 4 to 7 #3

name: Dependabot auto-merge
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Wait for CI to succeed
uses: lewagon/wait-on-check-action@v1.4.0
with:
ref: ${{ github.event.pull_request.head.sha }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
allowed-conclusions: success,skipped
check-regexp: '^(lint-typecheck-test|e2e)$'
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}