kibana/.github/workflows/pr-project-assigner.yml
Alex Holmansky 942fdeeb2d
Fix a typo in PR project assigner workflow configuration (#53511)
* Workflow configurations to assign issues and PRs with Team:AppArch label to kibana-app-arch project

* Fix a typo in the label name

* Remove merge conflicts
2019-12-18 12:40:58 -05:00

15 lines
460 B
YAML

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}]'
ghToken: ${{ secrets.GITHUB_TOKEN }}