We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68741d7 commit 10747a0Copy full SHA for 10747a0
.github/workflows/create-changelog.yml
@@ -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
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