ci: add pull request triage and Kodiak merge workflow (#9109)

* chore: enable kodiak for auto merges

* ci: add pull request triage

* ci: update kentaro-m/auto-assign-action

This supports Node.js 16.

---------

Co-authored-by: iCrawl <buechler.noel@outlook.com>
This commit is contained in:
Jiralite
2023-02-17 23:06:55 +00:00
committed by GitHub
parent 61fa6f45b4
commit 7737bbe2fe
4 changed files with 51 additions and 0 deletions

17
.github/workflows/pr-triage.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: 'PR Triage'
on:
pull_request_target:
jobs:
pr-triage:
name: PR Triage
runs-on: ubuntu-latest
steps:
- name: Automatically label PR
uses: actions/labeler@v4
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
sync-labels: true
- name: Automatically assign reviewers
if: github.event.action == 'opened'
uses: kentaro-m/auto-assign-action@v1.2.4