From df1ba3eec79e28f438ed40d3849603278e119ed9 Mon Sep 17 00:00:00 2001 From: Mangesh-Khairnar Date: Wed, 19 Feb 2020 19:33:27 +0530 Subject: [PATCH] chore: Add github action to automate backporting --- .github/workflows/backport.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/backport.yml diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml new file mode 100644 index 0000000000..7c6b8432b8 --- /dev/null +++ b/.github/workflows/backport.yml @@ -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 }} \ No newline at end of file