slice and merge so not showing 2 same rows together #153
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: Build and Deploy Storybook | |
on: | |
push: | |
branches: | |
- 'dev' # Trigger the action only pushed to a specific branch | |
- '!main' # Ignore if pushed to a specific branch | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Merge dev -> storybook-deploy 🚀 | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
from_branch: dev | |
target_branch: storybook-deploy | |
github_token: ${{ github.token }} |