File tree Expand file tree Collapse file tree 4 files changed +35
-2
lines changed
Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 44name : ' Deploy StoryBook'
55
66# Event for the workflow
7- on : push
7+ on :
8+ push :
9+ branches :
10+ - main
11+ tags :
12+ - ' *'
813
914# List of jobs
1015jobs :
Original file line number Diff line number Diff line change 1+ # .github/workflows/changelog.yml
2+
3+ name : Changelog
4+
5+ on : push
6+
7+ jobs :
8+ release :
9+ name : Changelog
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout code
13+ uses : actions/checkout@v2
14+ - name : Build Changelog
15+ if : startsWith(github.ref, 'refs/tags/')
16+ id : github_release
17+ uses : mikepenz/release-changelog-builder-action@v1
18+ env :
19+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 44name : ' Chromatic'
55
66# Event for the workflow
7- on : push
7+ on :
8+ push :
9+ branches :
10+ - main
11+
12+ pull_request :
13+ branches :
14+ - main
815
916# List of jobs
1017jobs :
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ name: Publish
44
55on :
66 push :
7+ branches :
8+ - main
79 tags :
810 - ' *'
911
You can’t perform that action at this time.
0 commit comments