build(deps): bump micromatch from 4.0.5 to 4.0.8 #4244
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: Merge Release Pull Request | |
on: | |
pull_request: | |
# That doesn't work for some reason. | |
# branches: | |
# - 'ci-release-v[0-9]+.[0-9]+.[0-9]+' | |
types: [edited, opened, synchronize] | |
jobs: | |
merge: | |
name: Merge Release Pull Request | |
# We thus use this to bypass above branch match issue: | |
if: ${{ startsWith(github.head_ref, 'ci-release-v') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Merge pull request | |
uses: pascalgn/[email protected] | |
# https://github.com/pascalgn/automerge-action#configuration | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
MERGE_LABELS: '' | |
MERGE_METHOD: rebase | |
UPDATE_RETRIES: '30' | |
UPDATE_RETRY_SLEEP: '10000' |