From f2307eb9d143d379ca827b4934a37cd3200cdf54 Mon Sep 17 00:00:00 2001 From: Big Andy <8012398+big-andy-coates@users.noreply.github.com> Date: Thu, 3 Nov 2022 14:40:14 +0000 Subject: [PATCH] Hacking for release note generation --- .github/workflows/release-notes.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release-notes.yml diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml new file mode 100644 index 0000000..7e1f928 --- /dev/null +++ b/.github/workflows/release-notes.yml @@ -0,0 +1,17 @@ +ame: Build Release Notes + +on: + push: + tags: [ * ] + +jobs: + build-release: + # if: startsWith(github.ref, 'refs/tags/') + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v3.1.0 + - name: Hack + run: | + echo "github.ref: ${{ github.ref }}" \ No newline at end of file