From 31b3b8e579253d79e6229c1f2ebb60ea8dc00c81 Mon Sep 17 00:00:00 2001 From: Kevin G Mathew Date: Wed, 25 Jun 2025 09:06:22 -0700 Subject: [PATCH 1/2] another-attempt --- test-app/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-app/app/page.tsx b/test-app/app/page.tsx index 553e5a3..79d3f80 100644 --- a/test-app/app/page.tsx +++ b/test-app/app/page.tsx @@ -97,7 +97,7 @@ export default function Home() { rel="noopener noreferrer" > Examples - Examples + Examples of next.js Date: Wed, 25 Jun 2025 09:21:33 -0700 Subject: [PATCH 2/2] another-attempt-fail --- .github/workflows/pass.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pass.yaml b/.github/workflows/pass.yaml index 96d901e..92bb21d 100644 --- a/.github/workflows/pass.yaml +++ b/.github/workflows/pass.yaml @@ -1,4 +1,4 @@ -name: PR 5-Min Pass Job for 'pass' Branches +name: PR 5-Min Pass Job for 'pass' Commits on: pull_request: @@ -7,12 +7,12 @@ on: types: [opened, synchronize, reopened] jobs: - run-if-branch-has-pass: - if: contains(github.head_ref, 'pass') + run-if-commit-has-pass: runs-on: ubuntu-latest + if: contains(github.event.pull_request.head.commit.message, 'pass') steps: - name: Sleep for 5 minutes run: sleep 300 - name: Done - run: echo "✅ Passed after 5 minutes for branch '${{ github.head_ref }}'" + run: echo "✅ Passed after 5 minutes due to commit: ${{ github.event.pull_request.head.commit.message }}"