From cd9a8ea84cc7a0e2e8acccf68c69712dcfcb3f3e Mon Sep 17 00:00:00 2001 From: AayushSaini101 Date: Sun, 21 Jun 2026 19:00:50 +0530 Subject: [PATCH 1/2] fix sonarcode warning in the welcome contributors workflow --- .github/workflows/welcome-first-time-contrib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/welcome-first-time-contrib.yml b/.github/workflows/welcome-first-time-contrib.yml index a98263a7..15d6ba03 100644 --- a/.github/workflows/welcome-first-time-contrib.yml +++ b/.github/workflows/welcome-first-time-contrib.yml @@ -18,7 +18,7 @@ permissions: jobs: welcome: name: Post welcome message - if: ${{ !contains(fromJson('["asyncapi-bot", "dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]'), github.actor) }} # zizmor: ignore[obfuscation] + if: ${{ !contains(fromJson('["asyncapi-bot", "dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]')) }} # zizmor: ignore[obfuscation] runs-on: ubuntu-latest permissions: contents: read # Required to read repository data for checking if it's the user's first contribution From 0743ca28936a9298a699a8d3942b19457897f8b7 Mon Sep 17 00:00:00 2001 From: AayushSaini101 Date: Sun, 21 Jun 2026 21:25:16 +0530 Subject: [PATCH 2/2] fix workflow failure --- .github/workflows/welcome-first-time-contrib.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/welcome-first-time-contrib.yml b/.github/workflows/welcome-first-time-contrib.yml index 15d6ba03..12983077 100644 --- a/.github/workflows/welcome-first-time-contrib.yml +++ b/.github/workflows/welcome-first-time-contrib.yml @@ -18,7 +18,7 @@ permissions: jobs: welcome: name: Post welcome message - if: ${{ !contains(fromJson('["asyncapi-bot", "dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]')) }} # zizmor: ignore[obfuscation] + if: ${{ !contains(fromJson('["asyncapi-bot", "dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]'), github.event.issue.user.login || github.event.pull_request.user.login) }} # zizmor: ignore[obfuscation] runs-on: ubuntu-latest permissions: contents: read # Required to read repository data for checking if it's the user's first contribution