From a8d78d38c644a62ff8526784bafff5cdccd88090 Mon Sep 17 00:00:00 2001 From: Dominic Amato Date: Fri, 10 Jul 2020 17:42:42 -0500 Subject: [PATCH] add some more github actions --- .github/workflows/changelog.yml | 21 +++++++++++++++++++++ .github/workflows/testlint.yml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/changelog.yml diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml new file mode 100644 index 0000000..4c01462 --- /dev/null +++ b/.github/workflows/changelog.yml @@ -0,0 +1,21 @@ +name: Changelog Drafter + +on: + push +# on: +# push: +# # develop is our tracking branch +# branches: +# - develop + +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 + with: + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + config-name: changelog-drafter.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/testlint.yml b/.github/workflows/testlint.yml index 4106106..05ab249 100644 --- a/.github/workflows/testlint.yml +++ b/.github/workflows/testlint.yml @@ -1,4 +1,4 @@ -name: Python package +name: Python Test and Lint on: [push]