From 39a44ae9747acee31cd3ada0b9e4c3ded82999d4 Mon Sep 17 00:00:00 2001 From: orhun Date: Fri, 18 Jun 2021 01:51:07 +0300 Subject: [PATCH] test(action): add main.yml workflow --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0e510a8 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 }}"