From 3db2b31f6f89feb9ac185ef35af9529d8ca216eb Mon Sep 17 00:00:00 2001 From: Mateusz Filipowicz Date: Fri, 7 Feb 2025 15:19:21 +0100 Subject: [PATCH] ci: assign automatically labels to PRs based on conventional commits --- .github/workflows/conventional-commits.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/conventional-commits.yml diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml new file mode 100644 index 0000000..bc383db --- /dev/null +++ b/.github/workflows/conventional-commits.yml @@ -0,0 +1,12 @@ +--- +name: conventional-commits +on: + pull_request_target: + types: + - opened + - edited +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: "bcoe/conventional-release-labels@v1"