From 21785fe389acec82b8807eead3f021098d69343a Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sat, 6 Mar 2021 14:45:09 -0700 Subject: [PATCH] ci: add release-please & cleanup actions --- .github/support.yml | 13 ------------- .github/workflows/dev.yml | 2 +- .github/workflows/release.yml | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 14 deletions(-) delete mode 100644 .github/support.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/support.yml b/.github/support.yml deleted file mode 100644 index cd6325e..0000000 --- a/.github/support.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Configuration for support-requests - https://github.com/dessant/support-requests -supportLabel: support -supportComment: > - Issues are reserved for bugs and features. Here are a few places to find answers to your question: - - * For community support, use the `gulp` tag on [StackOverflow](https://stackoverflow.com/questions/tagged/gulp). - - * Participate in community chat on [Gitter](https://gitter.im/gulpjs/gulp). - - * To get paid support directly from the maintainers, sign up for [Tidelift](https://tidelift.com/subscription/pkg/npm-gulp?utm_source=npm-gulp&utm_medium=referral&utm_campaign=support). Subscribers should email support@tidelift.com, mention that it's a question for Gulp, and describe your question. Straightforward questions are answered as part of your subscription. Additional consulting hours are available for more complex help. -close: true -lock: false -setLockReason: false diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 249514c..3646226 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -3,7 +3,7 @@ on: pull_request: push: branches: - - master + - main env: CI: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..25dd115 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,15 @@ +name: release +on: + push: + branches: + - main + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: GoogleCloudPlatform/release-please-action@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + release-type: node + package-name: release-please-action