-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23507 from storybookjs/enable-canary-releases
Release tooling: Initial empty canary release workflow
- Loading branch information
Showing
2 changed files
with
33 additions
and
88 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Publish canary release of PR | ||
run-name: 'Canary release: PR #${{ inputs.pr }}, triggered by ${{ github.triggering_actor }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
pr: | ||
description: 'Which pull request number to create a canary release for' | ||
required: true | ||
type: number | ||
|
||
env: | ||
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 | ||
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ inputs.pr }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
release-canary: | ||
name: Release canary version | ||
runs-on: ubuntu-latest | ||
environment: release | ||
defaults: | ||
run: | ||
working-directory: scripts | ||
steps: | ||
- name: Do nothing | ||
run: echo "I'm not doing anything" |