Skip to content

chore(deps): bump deprecated-react-native-prop-types from 2.3.0 to 5.0.0 #16

chore(deps): bump deprecated-react-native-prop-types from 2.3.0 to 5.0.0

chore(deps): bump deprecated-react-native-prop-types from 2.3.0 to 5.0.0 #16

Workflow file for this run

name: Approve and auto-merge dependabot PRs
on:
pull_request:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
automerge:
if: ${{ contains(github.head_ref, 'dependabot/npm_and_yarn') }}
runs-on: ubuntu-latest
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- name: Approve PR
run: gh pr review --approve "$PR_URL"
- name: Enable auto merge
run: gh pr merge --auto --merge "$PR_URL"