Browse Source

chore: Add github action to automate backporting (#9456)

version-14
Faris Ansari 5 years ago
committed by GitHub
parent
commit
14fef7d01e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      .github/workflows/backport.yml

+ 16
- 0
.github/workflows/backport.yml View File

@@ -0,0 +1,16 @@
name: Backport
on:
pull_request:
types:
- closed
- labeled

jobs:
backport:
runs-on: ubuntu-18.04
name: Backport
steps:
- name: Backport
uses: tibdex/backport@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save