Skip to content

chore(deps): update dependency commitizen to v4.3.1 #103

chore(deps): update dependency commitizen to v4.3.1

chore(deps): update dependency commitizen to v4.3.1 #103

Workflow file for this run

name: Main
on:
push:
branches: [main]
jobs:
publish:
name: Publish
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: codingnomad-com/github-workflow/.github/actions/publish@main
with:
npm_token: ${{ secrets.NPM_TOKEN }}
storybook:
name: Publish Storybook
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: codingnomad-com/github-workflow/.github/actions/storybook@main
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
syncPrerelease:
name: Sync Prerelease
needs: ['publish', 'storybook']
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: codingnomad-com/github-workflow/.github/actions/syncPrerelease@main
with:
personal_access_token: ${{ secrets.PERSONAL_ACCESS_TOKEN}}
github_token: ${{ secrets.GITHUB_TOKEN}}
syncRelease:
name: Sync Release
needs: ['publish', 'storybook']
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: codingnomad-com/github-workflow/.github/actions/syncRelease@main
with:
personal_access_token: ${{ secrets.PERSONAL_ACCESS_TOKEN}}
github_token: ${{ secrets.GITHUB_TOKEN}}