BREAKING CHANGE: update to emsdk v4.0.1 #1485
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: Enable automerge on dependabot PRs | |
on: | |
pull_request_target: | |
jobs: | |
automerge: | |
name: Enable automerge on dependabot PRs | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
pull-requests: write | |
repository-projects: write | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- uses: actions/checkout@v4 | |
- run: gh pr merge ${{ github.event.pull_request.html_url }} --auto --squash | |
env: | |
GH_TOKEN: ${{ github.token }} |