From 7f4f46ec07679c00e22287ec55b39ff1e4f809cf Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 8 Oct 2020 15:38:35 -0700 Subject: [PATCH] [actions] add "Allow Edits" workflow --- .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 0000000..aac42d3 --- /dev/null +++ b/.github/workflows/require-allow-edits.yml @@ -0,0 +1,14 @@ +name: Require “Allow Edits” + +on: [pull_request_target] + +jobs: + _: + name: "Require “Allow Edits”" + + runs-on: ubuntu-latest + + steps: + - uses: ljharb/require-allow-edits@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}