From e011b42b4c98ef542f19b6279a9bc34113284abb Mon Sep 17 00:00:00 2001 From: Peter Klooster Date: Fri, 3 Nov 2023 16:31:43 +0100 Subject: [PATCH] chore: Added release-drafter --- .github/workflows/pull-request-labeler.yml | 25 ++++++++++++++++ .github/workflows/release-drafter.yml | 35 ++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 .github/workflows/pull-request-labeler.yml create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/pull-request-labeler.yml b/.github/workflows/pull-request-labeler.yml new file mode 100644 index 00000000..c2ff656b --- /dev/null +++ b/.github/workflows/pull-request-labeler.yml @@ -0,0 +1,25 @@ +name: Pull Request Labeler + +on: + # 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: + contents: write + pull-requests: write + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - name: Label pull request + uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 00000000..fe7cd360 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,35 @@ +name: Release Drafter +on: + workflow_dispatch: + push: + # branches to consider in the event; optional, defaults to all + branches: + - main + - master +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" + - name: Checkout the repo + uses: release-drafter/release-drafter@v5 + # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml + # with: + # config-name: my-config.yml + # disable-autolabeler: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}