mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 07:25:43 +08:00
test(action): add main.yml workflow
This commit is contained in:
16
.github/workflows/main.yml
vendored
Normal file
16
.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
git-cliff-action:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Test the git-cliff changelog generator action
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: generate changelog
|
||||||
|
id: git-cliff
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
args: --verbose
|
||||||
|
- name: Print the changelog
|
||||||
|
run: echo "${{ steps.git-cliff.outputs.changelog }}"
|
||||||
Reference in New Issue
Block a user