deps(submodules): bump Glyph-Developer-Kit from 7e6c20f
to 1523d0b
#67
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-merge | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
enable-auto-merge: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
checks: write | |
pull-requests: write | |
repository-projects: write | |
if: ${{ github.actor_id == '49699333' }} # "dependabot[bot]" | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: enable auto-merge | |
if: ${{ steps.metadata.outputs.package-ecosystem != 'submodules' }} # disable Glyph SDK update | |
shell: bash | |
run: | |
gh pr merge --auto --squash "${{ github.event.pull_request.html_url }}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |