From de56cab76f556e5b4af0b8c8cb08d8b482b86d0a Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 28 May 2020 10:05:27 +0200 Subject: Workflow --- .github/workflows/rebase.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..e5bae3c1 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,18 @@ +on: + issue_comment: + types: [created] +name: Automatic Rebase +jobs: + rebase: + name: Rebase + if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') + runs-on: ubuntu-latest + steps: + - name: Checkout the latest code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.3.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file -- cgit