chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 #60
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: PR Labelling | |
on: | |
pull_request_target: | |
branches: [main] | |
types: [opened] | |
workflow_dispatch: | |
permissions: | |
# All other permissions are set to none | |
checks: write | |
contents: read | |
pull-requests: write | |
jobs: | |
assign-label-to-pr: | |
name: Assign Labels to PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: codelytv/pr-size-labeler@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_max_size: "10" | |
s_max_size: "100" | |
m_max_size: "500" | |
l_max_size: "1000" | |
fail_if_xl: "false" | |
- uses: actions/labeler@v3 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/workflows/configs/labeler-config.yml | |
# Adds labels based on branch type | |
- uses: ffittschen/pr-branch-labeler@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# Automatically assigns reviewers to pull requests | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: ".github/workflows/configs/assignment-config.yml" # Only needed if you use something other than .github/auto_assign.yml |