Bump undici package #718
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: Snapit | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
snapit: | |
name: Snapit | |
if: ${{ github.event.issue.pull_request && github.event.comment.body == '/snapit' }} | |
runs-on: ubuntu-latest | |
steps: | |
# This action can be executed by users with write permission to this repo | |
- name: Checkout current branch | |
uses: actions/checkout@v4 | |
- name: Force snapshot changeset | |
run: | | |
printf -- "---\n'@shopify/hydrogen': patch\n'@shopify/cli-hydrogen': patch\n'@shopify/create-hydrogen': patch\n---\n\nForce snapshot build.\n" > .changeset/force-snapshot-build.md | |
- name: Create snapshot version | |
uses: Shopify/snapit@0c0d2dd62c9b0c94b7d03e1f54e72f18548e7752 # pin to a specific commit | |
with: | |
github_comment_included_packages: '@shopify/hydrogen,@shopify/cli-hydrogen,@shopify/hydrogen-codegen,@shopify/mini-oxygen,@shopify/remix-oxygen' | |
custom_message_suffix: "\n> Create a new project with all the released packages running `npm create @shopify/hydrogen@<snapshot_version>`\n>To try a new CLI plugin version, add `@shopify/cli-hydrogen` as a dependency to your project using the snapshot version." | |
build_script: 'npm run build' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |