test(fuselage): Update stories incompatible with visual regression testing #1441
Workflow file for this run
This file contains hidden or 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: Continuous Integration (PR closed) | |
| on: | |
| pull_request_target: | |
| types: | |
| - closed | |
| jobs: | |
| delete-storybook-for-pr: | |
| name: 'Delete Storybook for PR #${{ github.event.number }}' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: gh-pages | |
| - run: rm -rf "fuselage/${{ github.event.number }}" "layout/${{ github.event.number }}" "onboarding-ui/${{ github.event.number }}" | |
| - uses: crazy-max/ghaction-github-pages@v5 | |
| with: | |
| target_branch: gh-pages | |
| build_dir: . | |
| commit_message: 'Deploy to Github Pages [skip ci]' | |
| jekyll: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |