From d2b12d9318f18cb85057778e0f201c81577d6ec6 Mon Sep 17 00:00:00 2001 From: Newton <5769156+iamnewton@users.noreply.github.com> Date: Tue, 22 Oct 2024 22:25:06 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=92=9A=20labeler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Newton <5769156+iamnewton@users.noreply.github.com> --- .github/labeler.yml | 6 ++++-- .github/workflows/lint.yml | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 64c750d..6b89074 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -8,11 +8,13 @@ documentation: # Add "bug" label to any PR where the head branch name starts with `fix` or has a `fix` section in the name bug: -- head-branch: ["^fix", "fix"] +- head-branch: + - "^fix-" # Add "enhancement" label to any PR where the head branch name starts with `feature` or has a `feature` section in the name enhancement: -- head-branch: ["^feat", "feature"] +- head-branch: + - "^feat-" # Add "release" label to any PR that is opened against the `main` branch release: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 35261ba..744724d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -86,5 +86,6 @@ jobs: with: branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }} commit_message: "chore: fix linting issues" + commit_options: '--no-verify --signoff' commit_user_name: super-linter commit_user_email: super-linter@super-linter.dev