From 5778b6d6ced83d7a881c0b2d94ee300a44af23f3 Mon Sep 17 00:00:00 2001 From: Ankush Jamdagani Date: Fri, 27 Mar 2020 15:45:57 +0530 Subject: [PATCH 1/2] Create main.yml --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..2c30bcd --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 782ede77b9f50df840e72db97fbbf29f93e79bfd Mon Sep 17 00:00:00 2001 From: AnkushJ Date: Fri, 27 Mar 2020 15:49:12 +0530 Subject: [PATCH 2/2] removed release-drafter app and added it as actions --- .github/workflows/{main.yml => release-drafter.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{main.yml => release-drafter.yml} (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/release-drafter.yml similarity index 100% rename from .github/workflows/main.yml rename to .github/workflows/release-drafter.yml