From 1c8d44c877428db28bd40fd0f39d691d3c9eccf2 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Thu, 17 Oct 2024 20:29:15 +0200 Subject: [PATCH] Update pr-validate.yaml Signed-off-by: Kjeld Schouten --- .github/workflows/pr-validate.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-validate.yaml b/.github/workflows/pr-validate.yaml index d4fe61815c7..d0d5cc6ec24 100644 --- a/.github/workflows/pr-validate.yaml +++ b/.github/workflows/pr-validate.yaml @@ -70,13 +70,25 @@ jobs: run: | echo "PR title: ${{ github.event.pull_request.title }}" - automerge-and-approve: + finished: needs: - pr-changes - charts-lint - charts-test - website-and-docs - print_head_msg + name: Finished PR Tests + runs-on: ubuntu-latest + continue-on-error: true + steps: + - name: Finisher + continue-on-error: true + run: | + echo "DONE" + + automerge-and-approve: + needs: + - finished if: ${{ contains(needs.print_head_msg.outputs.head-commit-message, 'by renovate') || contains(needs.print_head_msg.outputs.head-commit-message, '.all-contributorsrc') }}