File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ # Reusable release-please workflow
2+ # This is a reusable workflow that can be called from other repositories
3+ on :
4+ workflow_call :
5+ push :
6+ branches :
7+ - main
8+
9+ permissions :
10+ contents : write
11+ pull-requests : write
12+
13+ concurrency :
14+ group : ${{ github.workflow }}-${{ github.ref }}
15+ cancel-in-progress : true
16+
17+ name : release-please
18+ jobs :
19+ release-please :
20+ runs-on : ARM64
21+ steps :
22+ - name : Generate token
23+ id : generate_token
24+ uses : actions/create-github-app-token@v2
25+ with :
26+ app-id : ${{ secrets.GH_ACTIONS_HELPER_APP_ID }}
27+ private-key : ${{ secrets.GH_ACTIONS_HELPER_PK }}
28+
29+ - uses : chanzuckerberg/github-actions/.github/actions/release-please-semvar@v6
30+ with :
31+ app_token : ${{steps.generate_token.outputs.token}}
32+ include_component_in_tag : true
You can’t perform that action at this time.
0 commit comments