Fix KEB chart #8867
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: Label validator | |
on: | |
pull_request_target: | |
types: ["opened", "labeled", "unlabeled", "synchronize", "reopened", "ready_for_review", "edited"] | |
branches: [ "main" ] | |
jobs: | |
validate-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Validate labels | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: scripts/label_validator.sh "PR" ${{ github.event.pull_request.number }} ${{ github.event.action }} |