From 2ab604afd24f871b4473d8c4e7b84316ad94615f Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Sun, 5 Jan 2020 08:41:42 -0600 Subject: [PATCH] add global release changelog (#277) This will create a draft release with all of the changes since the last tag. We can use it for the "marketing" changes / changelog, where each package can then still get its own changelog file. The bulk of the configuration sits in the tauri-pps/.github repo. --- .github/workflows/push-to-dev.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/push-to-dev.yml diff --git a/.github/workflows/push-to-dev.yml b/.github/workflows/push-to-dev.yml new file mode 100644 index 000000000..12bb80706 --- /dev/null +++ b/.github/workflows/push-to-dev.yml @@ -0,0 +1,14 @@ +name: dev push + +on: + push: + branches: + - dev + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@v5.3.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}