From b87fc9526a2822923413fbc4688edf6396c9b8c0 Mon Sep 17 00:00:00 2001 From: orzyyyy Date: Tue, 24 Sep 2019 07:04:53 +0800 Subject: [PATCH] feat(actions): Automatic Rebase --- .github/workflows/rebase.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000000..8b1b974364 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,14 @@ +on: + issue_comment: + types: [created] +name: Automatic Rebase +jobs: + rebase: + name: Rebase + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Automatic Rebase + uses: cirrus-actions/rebase@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}