From 1be6956ee0645c2961db0e59b1c7b19fdc4e8f0c Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 31 Aug 2020 15:35:23 -0700 Subject: [PATCH] build: require "allow edits" to be checked PR-URL: https://github.com/nodejs/node/pull/35002 Reviewed-By: Mary Marchini Reviewed-By: Rich Trott --- .github/workflows/require-allow-edits.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/require-allow-edits.yml diff --git a/.github/workflows/require-allow-edits.yml b/.github/workflows/require-allow-edits.yml new file mode 100644 index 00000000000000..31a3d24efb423d --- /dev/null +++ b/.github/workflows/require-allow-edits.yml @@ -0,0 +1,14 @@ +name: Require “Allow Edits” + +on: [pull_request] + +jobs: + _: + name: "Require “Allow Edits”" + + runs-on: ubuntu-latest + + steps: + - uses: ljharb/require-allow-edits@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}