From fd2b419ebc78ffa1c4bb648b3ba46c20f308946e Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Thu, 23 Apr 2020 17:12:11 -0600 Subject: [PATCH] add action for rebase --- .github/workflows/rebase.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/rebase.yml diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml new file mode 100644 index 00000000..550c4a21 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,12 @@ +on: issue_comment +name: Automatic Rebase +jobs: + rebase: + name: Rebase + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}