[Reporting] Update some runtime validations #122300
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
on: | |
pull_request: | |
types: [labeled, unlabeled] | |
jobs: | |
assign_to_project: | |
runs-on: ubuntu-latest | |
name: Assign a PR to project based on label | |
steps: | |
- name: Assign to project | |
uses: elastic/github-actions/project-assigner@v1.0.0 | |
id: project_assigner | |
with: | |
issue-mappings: | | |
[ | |
{ "label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173897 }, | |
{ "label": "Feature:Lens", "projectName": "Lens", "columnId": 6219362 }, | |
{ "label": "Team:Platform", "projectName": "kibana-platform", "columnId": 5514360 }, | |
{"label": "Team:Canvas", "projectName": "canvas", "columnId": 6187580} | |
] | |
ghToken: ${{ secrets.GITHUB_TOKEN }} |