Skip to content

Improve error extraction from worker events in Safari. #1155

Improve error extraction from worker events in Safari.

Improve error extraction from worker events in Safari. #1155

Workflow file for this run

# Jobs that run on pull_request, but not on merge_group. This is useful for jobs that post comments on Pull Requests, like ESLint annotations.
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
automerge-dependabot:
if: github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v5
- name: Enable auto-merge for Dependabot PR
run: gh pr merge --rebase --auto "${{ github.event.pull_request.number }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}