This is an automated email from the ASF dual-hosted git repository. davidarthur pushed a commit to branch add-sleep in repository https://gitbox.apache.org/repos/asf/kafka-merge-queue-sandbox.git
commit 70040cd6c65a145f0556a3a8d9078faf15748e64 Author: David Arthur <[email protected]> AuthorDate: Mon Jul 8 11:44:20 2024 -0400 add different sleeps to better simulate a build --- .github/workflows/merge-queue.yml | 4 ++-- .github/workflows/pull-request.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/merge-queue.yml b/.github/workflows/merge-queue.yml index 88f31eb..ce64f5e 100644 --- a/.github/workflows/merge-queue.yml +++ b/.github/workflows/merge-queue.yml @@ -1,4 +1,4 @@ -name: Validate PR +name: Validate Patch on: pull_request: @@ -20,4 +20,4 @@ jobs: tree -a -I '.git' git status - name: Validate files - run: ./queue-check.sh + run: sleep 5 && ./queue-check.sh diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f1e9b03..6a9b925 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -1,4 +1,4 @@ -name: Validate PR +name: Run Tests on: pull_request: @@ -17,4 +17,4 @@ jobs: tree -a -I '.git' git status - name: Run tests and such - run: ./pr-check.sh + run: sleep 60 && ./pr-check.sh
