Skip to content

Commit e8f1cc7

Browse files
committed
chore: rename to release-please.yml
1 parent ccf8c47 commit e8f1cc7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

0 commit comments

Comments
 (0)