chore(deps-dev): bump geckodriver from 3.2.0 to 4.2.0 #894
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: Automerge Pull Requests | |
on: | |
pull_request: | |
types: | |
- labeled | |
- unlabeled | |
- synchronize | |
- opened | |
- edited | |
- ready_for_review | |
- reopened | |
- unlocked | |
pull_request_review: | |
types: | |
- submitted | |
check_suite: | |
types: | |
- completed | |
status: {} | |
jobs: | |
automerge: | |
name: Automerge Dependabot | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: 'Wait for status checks' | |
id: waitforstatuschecks | |
uses: "WyriHaximus/[email protected]" | |
with: | |
ignoreActions: Automerge Dependabot | |
checkInterval: 13 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Merge pull requests | |
uses: pascalgn/[email protected] | |
if: steps.waitforstatuschecks.outputs.status == 'success' | |
env: | |
MERGE_METHOD: "squash" | |
MERGE_LABELS: "" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |