Bump the npm_and_yarn group across 1 directories with 10 updates #231
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
# Workflow to associate labels automatically | |
name: PR-Labeler | |
# Trigger the workflow on pull request events | |
on: [pull_request] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
# We need to checkout the repository to access the configured file (.github/label-pr.yml) | |
- uses: actions/checkout@v2 | |
- name: Labeler | |
uses: docker://decathlon/pull-request-labeler-action:2.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Here we can override the path for the action configuration. If none is provided, default one is `.github/label-pr.yml` | |
CONFIG_PATH: ${{ secrets.GITHUB_WORKSPACE }}/.github/label-pr.yml |