chore(deps): bump underscore from 1.13.6 to 1.13.8 #221
Workflow file for this run
This file contains hidden or 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 approve trusted PR | |
| on: | |
| pull_request_target: | |
| branches: | |
| - master | |
| - main | |
| - develop | |
| jobs: | |
| autoapprove: | |
| name: Auto approve trusted PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Auto approve | |
| uses: handy-common-utils/conditionally-approve-pr-from-trusted-committers@master | |
| # if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' # this is optional | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} # required, feel free to use another PAT | |
| trusted-committers: dependabot[bot], github-actions[bot] # optional, default to "dependabot[bot],dependabot-preview[bot]" | |
| manage-approvals-for-reviewers: github-actions[bot] # optional, default to "github-actions[bot]" | |
| enable-auto-merge: true # optional, default to false |