From fc308eb469d4a8d9156456a476670a716980b21f Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 16 Jul 2025 13:48:17 +0200 Subject: [PATCH 1/3] add gh action file --- .github/workflows/test.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 000000000..1d04188da --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,23 @@ +# File: .github/workflows/test-check-mp.yml +name: Test Merly Mentor Action + +# Trigger on pushes to main (or whatever branch) +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +jobs: + test-merly: + runs-on: self-hosted + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 2 + path: testpath + + - name: Merly Mentor Check MP + uses: merly-ai/mentor-action@v1 From baa4d07fcdfbe3277c2544298532cf55f1cb9f0a Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 16 Jul 2025 13:49:37 +0200 Subject: [PATCH 2/3] remove path --- .github/workflows/test.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1d04188da..5ac5878a5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,6 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 2 - path: testpath - name: Merly Mentor Check MP uses: merly-ai/mentor-action@v1 From 6c4822a3564fd6ff561373c1e71bd30082730286 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 16 Jul 2025 13:53:09 +0200 Subject: [PATCH 3/3] remove step --- .github/workflows/test.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5ac5878a5..056eb834c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,10 +13,6 @@ jobs: test-merly: runs-on: self-hosted steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 2 - name: Merly Mentor Check MP uses: merly-ai/mentor-action@v1