mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Workflow configurations to assign issues and PRs with Team:AppArch label to kibana-app-arch project (#52820)
This commit is contained in:
parent
d79631adaa
commit
8d8da48ac8
2 changed files with 32 additions and 0 deletions
15
.github/workflows/pr-project-assigner.yml
vendored
Normal file
15
.github/workflows/pr-project-assigner.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
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:AppAch", "projectName": "kibana-app-arch", "columnId": 6173897}]'
|
||||
ghToken: ${{ secrets.GITHUB_TOKEN }}
|
17
.github/workflows/project-assigner.yml
vendored
Normal file
17
.github/workflows/project-assigner.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
on:
|
||||
issues:
|
||||
types: [labeled, unlabeled]
|
||||
|
||||
jobs:
|
||||
assign_to_project:
|
||||
runs-on: ubuntu-latest
|
||||
name: Assign issue or 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": 6173895}]'
|
||||
ghToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue