From aa9723e4a12c59cbe3024f6bcb4af52145b25384 Mon Sep 17 00:00:00 2001 From: Ugo Bechameil Date: Mon, 5 Feb 2024 16:40:16 +0100 Subject: [PATCH] [ARC-271] Update GitHub action that reports fake test results on PR - Update the LouisBrunner/checks-action action to v2.0.0 to use Node 20 and get rid of deprecation warning - Make the action work with plugin forks --- .github/workflows/fake-pr-tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fake-pr-tests.yml b/.github/workflows/fake-pr-tests.yml index 540978e..aa6bbc4 100644 --- a/.github/workflows/fake-pr-tests.yml +++ b/.github/workflows/fake-pr-tests.yml @@ -2,14 +2,17 @@ name: PR tests on: pull_request: types: [auto_merge_enabled] + workflow_dispatch: jobs: skip: name: Report fake success for PR tests runs-on: ubuntu-latest + permissions: + checks: write steps: - - uses: LouisBrunner/checks-action@v1.6.1 + - uses: LouisBrunner/checks-action@v2.0.0 with: - name: Run PR tests (Plugins) (Plugins) + name: Run PR tests (Plugins) conclusion: success token: ${{ secrets.GITHUB_TOKEN }}