From d4dd9dc16be34187da3260dd91bba3e669971703 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 13 Aug 2026 16:35:05 +0530 Subject: [PATCH 1/3] fix(ci): pass ruby input to setup action in rl-scanner --- .github/workflows/rl-scanner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rl-scanner.yml b/.github/workflows/rl-scanner.yml index 714d93309..ecf86a01e 100644 --- a/.github/workflows/rl-scanner.yml +++ b/.github/workflows/rl-scanner.yml @@ -34,7 +34,7 @@ jobs: - name: Configure Ruby uses: ./.github/actions/setup with: - ruby-version: ${{ inputs.ruby-version }} + ruby: ${{ inputs.ruby-version }} - name: Build RubyGems shell: bash From 5b8a675e23197ec577d4077eea936b1c8fe5c0e9 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 13 Aug 2026 16:38:56 +0530 Subject: [PATCH 2/3] test: temporarily run rl-scanner on PR events --- .github/workflows/release.yml | 2 ++ .github/workflows/rl-scanner.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4fa3367b0..e06a4c464 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,8 @@ on: pull_request: types: - closed + - opened # TEMP: test rl-scanner on PR + - synchronize # TEMP: test rl-scanner on PR workflow_dispatch: permissions: diff --git a/.github/workflows/rl-scanner.yml b/.github/workflows/rl-scanner.yml index ecf86a01e..247b99747 100644 --- a/.github/workflows/rl-scanner.yml +++ b/.github/workflows/rl-scanner.yml @@ -22,7 +22,7 @@ on: jobs: rl-scanner: - if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/')) + if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' # TEMP: test rl-scanner on PR runs-on: ubuntu-latest outputs: scan-status: ${{ steps.rl-scan-conclusion.outcome }} From 15af3122359cff02aa841b49447aa39372a51eae Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 13 Aug 2026 16:41:26 +0530 Subject: [PATCH 3/3] test: revert temporary rl-scanner PR triggers --- .github/workflows/release.yml | 2 -- .github/workflows/rl-scanner.yml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e06a4c464..4fa3367b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,8 +4,6 @@ on: pull_request: types: - closed - - opened # TEMP: test rl-scanner on PR - - synchronize # TEMP: test rl-scanner on PR workflow_dispatch: permissions: diff --git a/.github/workflows/rl-scanner.yml b/.github/workflows/rl-scanner.yml index 247b99747..ecf86a01e 100644 --- a/.github/workflows/rl-scanner.yml +++ b/.github/workflows/rl-scanner.yml @@ -22,7 +22,7 @@ on: jobs: rl-scanner: - if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' # TEMP: test rl-scanner on PR + if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/')) runs-on: ubuntu-latest outputs: scan-status: ${{ steps.rl-scan-conclusion.outcome }}