From 383bbd7a60cbafdaea9101946f69cbf4afda4bb0 Mon Sep 17 00:00:00 2001 From: Rusty Date: Thu, 1 Dec 2022 10:13:20 +0530 Subject: [PATCH] Update and rename release-please.yml to release-drafter.yml --- .github/workflows/release-drafter.yml | 41 +++++++++++++++++++++++++++ .github/workflows/release-please.yml | 14 --------- 2 files changed, 41 insertions(+), 14 deletions(-) create mode 100644 .github/workflows/release-drafter.yml delete mode 100644 .github/workflows/release-please.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..47a0361 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,41 @@ +name: Release Drafter + +on: + push: + # branches to consider in the event; optional, defaults to all + branches: + - main + # pull_request event is required only for autolabeler + pull_request: + # Only following types are handled by the action, but one can default to all as well + types: [opened, reopened, synchronize] + # pull_request_target event is required for autolabeler to support PRs from forks + # pull_request_target: + # types: [opened, reopened, synchronize] + +permissions: + contents: read + +jobs: + update_release_draft: + permissions: + # write permission is required to create a github release + contents: write + # write permission is required for autolabeler + # otherwise, read permission is required at least + pull-requests: write + runs-on: ubuntu-latest + steps: + # (Optional) GitHub Enterprise requires GHE_HOST variable set + #- name: Set GHE_HOST + # run: | + # echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV + + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + with: + config-name: release-template.yml + # disable-autolabeler: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index 23017d8..0000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,14 +0,0 @@ -on: - push: - branches: - - main -name: release-please -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: google-github-actions/release-please-action@v3 - with: - release-type: python - package-name: release-please-action - command: release-pr