Automatically label PRs (#9418)

* Automatically label and merge PRs
This commit is contained in:
Amir Omidi
2020-03-05 16:46:06 -08:00
committed by GitHub
parent 673e5a85cb
commit 76cf10d23c
23 changed files with 74960 additions and 2 deletions

16
.github/workflows/merger.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: AutoMerger
on:
issue_comment:
types: [created]
jobs:
release_labeler:
name: Auto Merger
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- uses: ./build/actions/AutoMerge/dist/index.js
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

19
.github/workflows/portlabel.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Port Request Labeler
on:
pull_request:
branches:
- release/**
jobs:
release_labeler:
name: Release labeler
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- uses: ./build/actions/AutoLabel/dist/index.js
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
label: "Port Request"