From bb221b141d4265a45ce42a8161a9379d6d67df30 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 17 Nov 2020 22:28:31 -0800 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 }}