From ce1fd88d90cb92043c044f1a4f0e224c434d67bd Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Fri, 27 Mar 2020 21:59:08 -0700 Subject: [PATCH] Adding a test'ish workflow. --- .github/workflows/changelog.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/changelog.yml diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml new file mode 100644 index 0000000..e4fb62a --- /dev/null +++ b/.github/workflows/changelog.yml @@ -0,0 +1,26 @@ +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + name: Testing + 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: metcalfc/changelog-generator@master + with: + myToken: ${{ secrets.GITHUB_TOKEN }} + head-ref: "v0.0.2" + base-ref: "v0.0.1" + - name: Get the changelog + run: echo "${{ steps.changelog.outputs.changelog }}" + - name: Generate changelog from release + id: release + uses: metcalfc/changelog-generator@master + with: + myToken: ${{ secrets.GITHUB_TOKEN }} + - name: Get the changelog + run: echo "${{ steps.release.outputs.changelog }}"