-
-
Notifications
You must be signed in to change notification settings - Fork 8
27 lines (22 loc) · 804 Bytes
/
Copy pathchangelog.yml
File metadata and controls
27 lines (22 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-18.04
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v2
- name: Generate changelog
id: changelog
uses: jaywcjlove/changelog-generator@main
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
filter-author: (jaywcjlove|小弟调调™|dependabot\[bot\]|Renovate Bot)
filter: (^[\s]+?[R|r]elease)|(^[R|r]elease)
- name: Get the tag name
run: echo "${{ steps.changelog.outputs.tag }}"
- name: Get the branch name
run: echo "${{ steps.changelog.outputs.branch }}"
- name: Get comparing changes url,
run: echo "${{ steps.changelog.outputs.compareurl }}"