use example from repo
This commit is contained in:
@@ -11,7 +11,13 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: echo name
|
- name: echo name
|
||||||
run: echo ${{ github.event.repository.owner.login }}
|
run: echo ${{ github.event.repository.owner.login }}
|
||||||
|
- name: Get milestone from tag
|
||||||
|
id: milestone-from-tag
|
||||||
|
run: |
|
||||||
|
milestone=$(echo ${{ github.ref_name }} | cut -c 2-)
|
||||||
|
echo "milestone=$milestone" >> $GITHUB_OUTPUT
|
||||||
|
echo $milestone
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
uses: spring-io/github-changelog-generator@v0.0.12
|
uses: spring-io/github-changelog-generator@v0.0.12
|
||||||
with:
|
with:
|
||||||
milestone: '1.0.0'
|
milestone: ${{ steps.milestone-from-tag.outputs.milestone }}
|
||||||
Reference in New Issue
Block a user