From 1e6e8c1e2c6af113ca02dbd624456c221b756d57 Mon Sep 17 00:00:00 2001 From: Oleg Nenashev Date: Sun, 18 Aug 2019 20:21:46 +0200 Subject: [PATCH] Add Release Drafter to GitHub Actions --- .github/workflows/main.workflow | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/main.workflow diff --git a/.github/workflows/main.workflow b/.github/workflows/main.workflow new file mode 100644 index 0000000..d18c644 --- /dev/null +++ b/.github/workflows/main.workflow @@ -0,0 +1,9 @@ +workflow "Push" { + on = "push" + resolves = ["Draft Release"] +} + +action "Draft Release" { + uses = "toolmantim/release-drafter@v5.2.0" + secrets = ["GITHUB_TOKEN"] +}