From c244b3c9dd51269c35dc04a86940abbff7671647 Mon Sep 17 00:00:00 2001 From: Ariel Valentin Date: Mon, 22 Jan 2024 06:59:27 -0600 Subject: [PATCH] squash: remove unused action --- .../workflows/lint-conventional-commits.yaml | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/lint-conventional-commits.yaml diff --git a/.github/workflows/lint-conventional-commits.yaml b/.github/workflows/lint-conventional-commits.yaml deleted file mode 100644 index ef226f645..000000000 --- a/.github/workflows/lint-conventional-commits.yaml +++ /dev/null @@ -1,39 +0,0 @@ -name: "Lint Conventional Commits" -on: - pull_request: - types: - - opened - - synchronize - - reopened - - edited - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number }} # Ensure that only one instance of this workflow is running per Pull Request - cancel-in-progress: true # Cancel any previous runs of this workflow - -jobs: - main: - name: Lint Conventional Commits - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: amannn/action-semantic-pull-request@v5.4.0 - name: "🤖 Check PR title follows conventional commit spec" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - # Have to specify all types because `maint` and `rel` aren't defaults - types: | - fix - feat - chore - ci - docs - style - refactor - perf - test - - uses: actions/checkout@v4.1.1 - - uses: wagoid/commitlint-github-action@v5.4.5 - name: "🤖 Check commit messages follow conventional commit spec"