chore(deps): bump the workerd-and-workers-types group across 1 directory with 2 updates #716
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: "Miniflare - Generate changesets for dependabot PRs" | |
on: | |
pull_request_target: | |
paths: | |
- "packages/miniflare/package.json" | |
jobs: | |
generate-changeset: | |
runs-on: ubuntu-22.04 | |
if: | | |
github.event.pull_request.user.login == 'dependabot[bot]' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Configure Git | |
run: | | |
git config --global user.email wrangler@cloudflare.com | |
git config --global user.name 'Wrangler automated PR updater' | |
- name: Generate Miniflare changesets | |
run: node -r esbuild-register tools/dependabot/generate-dependabot-pr-changesets.ts ${{ github.event.number }} miniflare packages/miniflare/package.json dependabot-update |