mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Testing project_assigner action for beta projects (#126950)
We suspect this action will not work with GH beta projects, so let's confirm.
This commit is contained in:
parent
377e2b4c3d
commit
eed64fda74
1 changed files with 22 additions and 0 deletions
22
.github/workflows/assign-infra-monitoring.yml
vendored
Normal file
22
.github/workflows/assign-infra-monitoring.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Assign to Infra Monitoring UI (beta) project
|
||||
on:
|
||||
issues:
|
||||
types: [labeled]
|
||||
|
||||
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@v2.1.1
|
||||
id: project_assigner_infra_monitoring
|
||||
with:
|
||||
issue-mappings: |
|
||||
[
|
||||
{"label": "Team:Infra Monitoring UI", "projectNumber": 664, "projectScope": "org"},
|
||||
{"label": "Feature:Stack Monitoring", "projectNumber": 664, "projectScope": "org"},
|
||||
{"label": "Feature:Logs UI", "projectNumber": 664, "projectScope": "org"},
|
||||
{"label": "Feature:Metrics UI", "projectNumber": 664, "projectScope": "org"},
|
||||
]
|
||||
ghToken: ${{ secrets.PROJECT_ASSIGNER_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue