ci(action): bump the dependencies group with 2 updates #572
Workflow file for this run
This file contains 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
name: commit-lint | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
commit-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
steps: | |
- name: Commit lint | |
# Dependabot sometimes makes some really long commit messages and I can't stop it | |
continue-on-error: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') || github.actor == 'dependabot[bot]' }} | |
uses: ahmadnassri/[email protected] | |
with: | |
token: ${{ github.token }} |