From 687ad313f3e4718e0d738c232676e55cc701d258 Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Tue, 16 Jan 2024 13:55:39 -0600 Subject: [PATCH] squash: try with config file instead --- .commit-me.json | 6 ++++++ .github/workflows/conventional-commits.yaml | 14 +------------- 2 files changed, 7 insertions(+), 13 deletions(-) create mode 100644 .commit-me.json diff --git a/.commit-me.json b/.commit-me.json new file mode 100644 index 000000000..5cdf4602e --- /dev/null +++ b/.commit-me.json @@ -0,0 +1,6 @@ +{ + "include-commits": false, + "include-pull-requests": true, + "update-labels": false, + "types": [ "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "test" ] +} diff --git a/.github/workflows/conventional-commits.yaml b/.github/workflows/conventional-commits.yaml index 4b995a368..ded32add3 100644 --- a/.github/workflows/conventional-commits.yaml +++ b/.github/workflows/conventional-commits.yaml @@ -24,17 +24,5 @@ jobs: steps: - uses: dev-build-deploy/commit-me@v1.2.0 with: - update-labels: false # OPTIONAL; do not update the Pull Request labels based on the Conventional Commits information. - include-commits: false - include-pull-requests: true token: ${{ secrets.GITHUB_TOKEN }} - types: | - chore - ci - docs - feat - fix - perf - refactor - release - test + config: ".commit-me.json"