chore(deps): bump commander from 12.1.0 to 14.0.2 #328
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2023 Kevin de Jong <monkaii@hotmail.com> | |
| # SPDX-License-Identifier: CC0-1.0 | |
| --- | |
| name: Conventional Commits | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| 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 | |
| permissions: | |
| contents: read # Required to retrieve the commits associated with your Pull Request | |
| pull-requests: write # Required to add a label to your Pull Request | |
| jobs: | |
| commit-me: | |
| name: Conventional Commits Compliance | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run CommitMe | |
| uses: ./ | |
| with: | |
| token: ${{ github.token }} # Required to retrieve the commits associated with | |
| # your Pull Request | |
| include-commits: true # Forces the inclusion of commits associated with your | |
| # Pull Request without requiring the `contents:write` | |
| # permission | |
| config: .github/.commit-me.json # Path to your CommitMe configuration file | |
| env: | |
| # Enable colored output in GitHub Actions | |
| FORCE_COLOR: 3 |