From 193494f53c864d7ca26076e81d477dcbaceb0487 Mon Sep 17 00:00:00 2001 From: Yogesh Choudhary Paliyal Date: Sat, 2 Mar 2024 12:48:30 +0530 Subject: [PATCH] Update workflows --- .github/workflows/merge-queue.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/merge-queue.yml diff --git a/.github/workflows/merge-queue.yml b/.github/workflows/merge-queue.yml new file mode 100644 index 00000000..e734a621 --- /dev/null +++ b/.github/workflows/merge-queue.yml @@ -0,0 +1,18 @@ +name: Validate code in the merge queue + +on: + merge_group: + +jobs: + validate-pr: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Display info + run: | + pwd + tree -a -I '.git' + git status + - name: Run slow CI (emulated by a long sleep) + run: sleep 300 \ No newline at end of file