Skip to content

Commit 10747a0

Browse files
committed
[RN][Releases] Generate the changelog automatically
1 parent 68741d7 commit 10747a0

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Generate Changelog
2+
3+
on:
4+
pull_requests:
5+
workflow_call:
6+
7+
jobs:
8+
generate-changelog:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
fetch-tags: true
17+
- name: Install dependencies
18+
uses: ./.github/actions/yarn-install
19+
- name: Generate Changelog
20+
uses: actions/github-script@v6
21+
with:
22+
script: |
23+
console.log("Running generateChangelog");
24+
# const {generateChangelog} = require('./.github/workflow-scripts/generate-changelog');
25+
# const version = "${{ github.ref_name }}";
26+
# await verifyArtifactsAreOnMaven(version);

0 commit comments

Comments
 (0)