From 7c328c4f5451734260d511c1148ac7fc06275530 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 11:52:16 +0000 Subject: [PATCH 1/2] Initial plan From 96c60cd73be3ac6d70332a3943d2826400994dd6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 12:04:56 +0000 Subject: [PATCH 2/2] fix: add if-condition to greeting job to prevent 0-job failure runs Co-authored-by: RohanExploit <178623867+RohanExploit@users.noreply.github.com> --- .github/workflows/greetings.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 75676be4..e45dffdf 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -12,6 +12,7 @@ permissions: jobs: greeting: + if: github.event_name == 'issues' || github.event_name == 'pull_request_target' runs-on: ubuntu-latest steps: - name: Greet New Contributors