add a 15 second loop for creating the db and waiting before doing a f… #44887
Workflow file for this run
This file contains 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 | |
on: | |
pull_request_target: | |
paths-ignore: | |
- '.github/workflows/go-auto-approve.yml' | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
approve: | |
name: auto-approve dependabot PRs | |
if: github.actor == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies') | |
runs-on: ubuntu-latest | |
steps: | |
- name: approve | |
uses: hmarr/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |