Skip to content

Bump ts-jest from 29.2.5 to 29.2.6 #347

Bump ts-jest from 29.2.5 to 29.2.6

Bump ts-jest from 29.2.5 to 29.2.6 #347

name: Auto approve and Merge Dependabot PRs

Check failure on line 1 in .github/workflows/auto-approve-and-merge.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/auto-approve-and-merge.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
pull_request_target:
types: [labeled]
permissions:
pull-requests: write
contents: write
jobs:
test:
name: Check who the actor is
runs-on: ubuntu-24.04
steps:
run: echo ${{ github.actor }}
approve:
name: Auto-approve dependabot PRs
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-24.04
steps:
- uses: hmarr/auto-approve-action@v4
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}