chore(deps): bump sources/zotero-translate from 2e8fce6 to 1c5385f
#963
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: 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/github-action-wait-for-status@v1.8" | |
| with: | |
| ignoreActions: Automerge Dependabot | |
| checkInterval: 13 | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| - name: Merge pull requests | |
| uses: pascalgn/automerge-action@v0.15.6 | |
| if: steps.waitforstatuschecks.outputs.status == 'success' | |
| env: | |
| MERGE_METHOD: "squash" | |
| MERGE_LABELS: "" | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |