react-native-vision-camera/.github/workflows/notice-yarn-changes.yml
Bartosz Kaszubowski 0569c065bc
chore: fix the permission issue for dependabot (#286)
* attempt to fix the permission issue for dependabot

* move permissions to the job scope
2021-07-26 09:42:51 +02:00

20 lines
478 B
YAML

name: Notice yarn.lock changes
on: [pull_request]
jobs:
check:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Notice yarn.lock changes
uses: Simek/yarn-lock-changes@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
collapsibleThreshold: '25'
failOnDowngrade: 'false'
path: 'yarn.lock'
updateComment: 'true'