From 55cff2f18bd481ab50993da87e54b698e2202e9d Mon Sep 17 00:00:00 2001 From: Scott Dickerson Date: Fri, 28 Jul 2023 14:14:05 -0400 Subject: [PATCH] :seedling: Action PR Checks / Verify PR contents does not require checkout (#1219) The `konveyor/release-tools/cmd/verify-pr` action does not require a source checkout to run. Just skip the step. Signed-off-by: Scott J Dickerson --- .github/workflows/pr-checks.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 9771323e4..14ff98c93 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -9,10 +9,8 @@ jobs: runs-on: ubuntu-latest name: Verify PR contents steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Check Title - id: verifier - uses: konveyor/release-tools/cmd/verify-pr@main - with: - github_token: ${{ secrets.GITHUB_TOKEN }} + - name: Check Title + id: verifier + uses: konveyor/release-tools/cmd/verify-pr@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }}