-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18d7bdf
commit 383fdbf
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -50,11 +50,15 @@ jobs: | |
rm -rf storybook-build/docs | ||
cp -a posthog/storybook-static storybook-build/docs | ||
- name: Set commit message | ||
id: commit-message | ||
run: echo "msg='Storybook build '$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Commit update | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
repository: storybook-build | ||
commit_message: 'Storybook build' | ||
commit_message: ${{ steps.commit-message.outputs.msg }} | ||
commit_user_name: PostHog Bot | ||
commit_user_email: [email protected] | ||
commit_author: PostHog Bot <[email protected]> |