From 3fa93b01b8d5d38e24bf5d98368944214927149e Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Tue, 21 Mar 2023 04:08:56 +0000 Subject: [PATCH] ci: Create proofread-action.yaml (#714) --- .github/workflows/proofread-action.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/proofread-action.yaml diff --git a/.github/workflows/proofread-action.yaml b/.github/workflows/proofread-action.yaml new file mode 100644 index 00000000..f8d463fa --- /dev/null +++ b/.github/workflows/proofread-action.yaml @@ -0,0 +1,14 @@ +name: Proofread PRs +on: [pull_request] + +jobs: + test: + permissions: write-all # Required since GitHub now gives actions read-only permissions by default + runs-on: ubuntu-latest + name: Proofread PRs + steps: + - name: Proofread PR + uses: awreck/proofread-action@v1 + id: proofread + with: + token: ${{ secrets.GITHUB_TOKEN }} # Required to write a PR review