From 68605fcb6bc0341ff0aae14a94bf5d18e1bc73be Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 18 Nov 2019 08:48:28 -0800 Subject: [PATCH] [actions] add automatic rebasing / merge commit blocking See https://github.com/ljharb/es-abstract/pull/74 --- .github/workflows/rebase.yml | 15 +++++++++++++++ 1 file changed, 15 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..436cb79 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,15 @@ +name: Automatic Rebase + +on: [pull_request] + +jobs: + _: + name: "Automatic Rebase" + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - uses: ljharb/rebase@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}