From 07dbeb8f66479f3f4acb325aa9209e9efda6d36b Mon Sep 17 00:00:00 2001 From: Daniel <71837281+darmiel@users.noreply.github.com> Date: Sun, 18 Dec 2022 18:45:25 +0100 Subject: [PATCH] ci: don't auto approve / request changes since this doesn't require a GITHUB_TOKEN with write access --- .github/workflows/pr_lint_review.yaml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/pr_lint_review.yaml b/.github/workflows/pr_lint_review.yaml index cf1b5f35..52c88063 100644 --- a/.github/workflows/pr_lint_review.yaml +++ b/.github/workflows/pr_lint_review.yaml @@ -42,24 +42,20 @@ jobs: with: run: python fff-ir-lint/main.py github2 file:changed_file_list.txt - - uses: ntsd/auto-request-changes-action@v2 - name: "❌ Request Changes" + - name: Request Changes + uses: thollander/actions-comment-pull-request@v2 if: ${{ steps.run.outputs.stderr }} with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - comment-body: | + message: | + ❌ Found Issues ${{ steps.run.outputs.stdout }} - - # optional: auto approve PRs with valid .ir files - - uses: hmarr/auto-approve-action@v2 - name: "✅ Approve Changes" + + - name: Request Changes + uses: thollander/actions-comment-pull-request@v2 if: ${{ ! steps.run.outputs.stderr }} with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - review-message: | - > **Note**: This approval was *auto-generated* - - LGTM! 😊 + message: | + LGTM! 😊 No issues found. - name: Fail Pipeline if: ${{ steps.run.outputs.stderr }}