Skip to content

chore: Bump @commitlint/cli from 19.2.1 to 19.3.0 #6685

chore: Bump @commitlint/cli from 19.2.1 to 19.3.0

chore: Bump @commitlint/cli from 19.2.1 to 19.3.0 #6685

Workflow file for this run

# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
name: Auto-label PRs
on:
pull_request:
types:
- opened
- synchronize
env:
TOKEN: "${{ secrets.GITHUB_TOKEN }}"
jobs:
# To view the configuration, go to: .github/labeler.yml
triage:
name: Apply triage labels
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
with:
repo-token: ${{ env.TOKEN }}
in-progress:
name: Flag a PR as work-in-progress if in draft
runs-on: ubuntu-latest
steps:
- name: Flag work in progress
if: |
github.event.pull_request.draft == true &&
!contains(github.event.pull_request.labels.*.name, 'on hold') &&
!contains(github.event.pull_request.labels.*.name, 'blocked')
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ env.TOKEN }}
labels: work in progress