fix(deps): update dependency bun-types to v1.0.11 #1335
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: pr | |
on: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'website/**' | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
jobs: | |
dependencies: | |
uses: the-guild-org/shared-config/.github/workflows/changesets-dependencies.yaml@main | |
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }} | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
alpha: | |
if: | |
${{ (github.event.pull_request.head.repo.full_name == github.repository || | |
github.event.inputs.onDemand == 'yes') && github.event.pull_request.title != 'Upcoming Release | |
Changes' }} | |
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | |
with: | |
npmTag: alpha | |
buildScript: build | |
nodeVersion: 20 | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
npmToken: ${{ secrets.NODE_AUTH_TOKEN }} | |
release-candidate: | |
if: | |
${{ github.event.pull_request.head.repo.full_name == github.repository && | |
github.event.pull_request.title == 'Upcoming Release Changes' }} | |
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | |
with: | |
npmTag: rc | |
buildScript: build | |
nodeVersion: 20 | |
restoreDeletedChangesets: true | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
npmToken: ${{ secrets.NODE_AUTH_TOKEN }} |