From e130da77f48f8cd2fb47db85eae2bb37c3485019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Volf?= <66163112+matous-volf@users.noreply.github.com> Date: Thu, 15 Aug 2024 12:42:25 +0200 Subject: [PATCH] ci: make the conventional commits and PR actions more consistent --- .github/workflows/conventional-commits.yml | 6 ++++-- .github/workflows/conventional-pull-requests.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml index ae0e33e..5ebc73b 100644 --- a/.github/workflows/conventional-commits.yml +++ b/.github/workflows/conventional-commits.yml @@ -9,7 +9,9 @@ jobs: name: conventional commits runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 - - uses: webiny/action-conventional-commits@v1.3.0 + - name: checkout code + uses: actions/checkout@v3 + - name: conventional commits check + uses: webiny/action-conventional-commits@v1.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/conventional-pull-requests.yml b/.github/workflows/conventional-pull-requests.yml index 525552e..400ee38 100644 --- a/.github/workflows/conventional-pull-requests.yml +++ b/.github/workflows/conventional-pull-requests.yml @@ -8,7 +8,7 @@ jobs: validate-pr-title: runs-on: ubuntu-22.04 steps: - - name: PR Conventional Commit Validation + - name: conventional pull requests check uses: ytanikin/PRConventionalCommits@1.1.0 with: task_types: '["build","chore","ci","docs","feat","fix","perf","refactor","revert","style","test"]'