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