From d35999c44c320326c61ce621aaaa4172dbc7c1c0 Mon Sep 17 00:00:00 2001 From: butlerx Date: Mon, 9 Sep 2019 21:02:55 +0100 Subject: [PATCH] add rebase action --- .github/workflows/rebase.yml | 13 +++++++++++++ 1 file changed, 13 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 0000000..faab0c7 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,13 @@ +--- +name: Automatic Rebase +on: issue_comment +jobs: + rebase: + name: Rebase + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}