mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 16:13:08 +02:00
ci(#10336): notify on changes
This commit is contained in:
parent
5ab02cbeea
commit
5143f3372c
1 changed files with 16 additions and 2 deletions
18
.github/workflows/storybook.yml
vendored
18
.github/workflows/storybook.yml
vendored
|
@ -37,9 +37,23 @@ jobs:
|
|||
env:
|
||||
NODE_OPTIONS: "--max_old_space_size=7168"
|
||||
- name: Publish to Chromatic
|
||||
run: "pnpm --filter frontend chromatic -d storybook-static || :"
|
||||
id: chromatic
|
||||
uses: chromaui/action@v1
|
||||
env:
|
||||
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
||||
exitZeroOnChanges: false
|
||||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
||||
- name: Notify on changes
|
||||
uses: actions/github-script@v6.4.0
|
||||
if: failure()
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
script: |
|
||||
github.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: 'Chromatic has detected ${{ steps.chromatic.outputs.changeCount }} changes in the Storybook. [Check it out](${{ steps.chromatic.outputs.url }}).'
|
||||
})
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue