test(action): add main.yml workflow

This commit is contained in:
orhun
2021-06-18 01:51:07 +03:00
parent 29b917f0c8
commit 39a44ae974

16
.github/workflows/main.yml vendored Normal file
View 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 }}"