2023-06-12 10:29:41 +00:00
|
|
|
name: "Pull Request Triage"
|
|
|
|
on:
|
2023-06-12 18:42:27 +00:00
|
|
|
pull_request_target:
|
2023-06-12 10:29:41 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
triage:
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Update labels based on changes
|
|
|
|
uses: actions/labeler@v4
|
|
|
|
with:
|
|
|
|
sync-labels: true
|
|
|
|
dot: true
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [Audio]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/audio.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [CPU]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/cpu.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [GPU]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/gpu.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [GUI]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/gui.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [Horizon]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/horizon.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [Infra]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/infra.yml'
|
|
|
|
if: github.event.action == 'opened'
|
|
|
|
|
2023-06-12 18:42:27 +00:00
|
|
|
- name: Auto Assign [Global]
|
|
|
|
uses: kentaro-m/auto-assign-action@v1
|
2023-06-12 10:29:41 +00:00
|
|
|
with:
|
|
|
|
configuration-path: '.github/assign/global.yml'
|
2023-06-12 18:42:27 +00:00
|
|
|
if: github.event.action == 'opened'
|