chore(deps): bump the workerd-and-workers-types group with 2 updates #3250
Workflow file for this run
This file contains hidden or 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" | |
| permissions: | |
| # content:write permission needed to update add changesets to dependabot PRs | |
| # (see tools/dependabot/generate-dependabot-pr-changesets.ts) | |
| contents: write | |
| jobs: | |
| generate-changeset: | |
| runs-on: ubuntu-slim | |
| 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 | |
| # The paremeters to the script are: | |
| # - PR: The number of the current Dependabot PR | |
| # - Packages: Coma-separated names of the workers-sdk packages whose dependencies are being updated | |
| # - PackageJSON: The path to the package JSON being updated by Dependabot | |
| # - Changeset prefix: The prefix to go on the front of the filename of the generated changeset | |
| run: >- | |
| node -r esbuild-register tools/dependabot/generate-dependabot-pr-changesets.ts | |
| ${{ github.event.number }} | |
| miniflare,wrangler | |
| packages/miniflare/package.json | |
| dependabot-update |