From 40daadefd695338a1348cb231ec309f2da04184a Mon Sep 17 00:00:00 2001 From: Jan Heinrich Reimer Date: Mon, 16 Nov 2020 13:22:31 +0100 Subject: [PATCH] Generate full test changelog on push --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b64a801 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: push + +jobs: + build: + runs-on: ubuntu-18.04 + steps: + - name: "📥 Check-out" + uses: actions/checkout@v2 + - name: "✏️ Generate full changelog" + id: generate-full-changelog + uses: heinrichreimer/action-github-changelog-generator@{{ github.sha }} + - name: "📤 Upload changelog" + uses: actions/upload-artifact@v1.0.0 + with: + name: "Changelog" + path: CHANGELOG.md