From fb6071c81cf9422a9a3ca88c054fae4a7d61d627 Mon Sep 17 00:00:00 2001 From: Yahav Ohana Date: Sun, 26 Oct 2025 11:21:39 +0200 Subject: [PATCH 1/4] FastCI + Frogbot scan workflow Added FastCI optimization action to the workflow. --- .github/workflows/frogbot-scan-pull-request.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/frogbot-scan-pull-request.yml b/.github/workflows/frogbot-scan-pull-request.yml index 804f5003..787428e6 100644 --- a/.github/workflows/frogbot-scan-pull-request.yml +++ b/.github/workflows/frogbot-scan-pull-request.yml @@ -16,6 +16,11 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} + - uses: jfrog-fastci/fastci@main # Use the FastCI optimization action + with: + github_token: ${{secrets.GITHUB_TOKEN}} + fastci_otel_token: ${{ secrets.COROLOGIX_OTEL_TOKEN }} + # Install prerequisites - name: Set up Java uses: actions/setup-java@v3 @@ -39,4 +44,4 @@ jobs: # [Mandatory] # The GitHub token automatically generated for the job - JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 07e827b2defd76baa107b602801182d1358295d1 Mon Sep 17 00:00:00 2001 From: Yahav Ohana Date: Sun, 26 Oct 2025 11:22:16 +0200 Subject: [PATCH 2/4] FastCI + Tests workflow Added FastCI optimization action to the workflow. --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 90b77c19..14b4770c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,6 +31,12 @@ jobs: with: submodules: true ref: ${{ github.event.pull_request.head.sha }} + + - uses: jfrog-fastci/fastci@main # Use the FastCI optimization action + with: + github_token: ${{secrets.GITHUB_TOKEN}} + fastci_otel_token: ${{ secrets.COROLOGIX_OTEL_TOKEN }} + - name: Unlabel 'safe to test' uses: actions-ecosystem/action-remove-labels@v1 if: ${{ github.event_name != 'push' }} From d5e5209783b89d94f0fcb5d625fc0a4225a5b078 Mon Sep 17 00:00:00 2001 From: Yahav Ohana Date: Wed, 29 Oct 2025 15:40:54 +0200 Subject: [PATCH 3/4] Update FastCI token in workflow configuration --- .github/workflows/frogbot-scan-pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/frogbot-scan-pull-request.yml b/.github/workflows/frogbot-scan-pull-request.yml index 787428e6..b3c8949f 100644 --- a/.github/workflows/frogbot-scan-pull-request.yml +++ b/.github/workflows/frogbot-scan-pull-request.yml @@ -19,7 +19,7 @@ jobs: - uses: jfrog-fastci/fastci@main # Use the FastCI optimization action with: github_token: ${{secrets.GITHUB_TOKEN}} - fastci_otel_token: ${{ secrets.COROLOGIX_OTEL_TOKEN }} + fastci_otel_token: ${{ secrets.FASTCI_TOKEN }} # Install prerequisites - name: Set up Java From 971d271f1a5c99552e9d545eb05b4fbbfe1fc5f3 Mon Sep 17 00:00:00 2001 From: Yahav Ohana Date: Wed, 29 Oct 2025 15:41:13 +0200 Subject: [PATCH 4/4] Update FastCI token in test workflow --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14b4770c..a4937a07 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,7 @@ jobs: - uses: jfrog-fastci/fastci@main # Use the FastCI optimization action with: github_token: ${{secrets.GITHUB_TOKEN}} - fastci_otel_token: ${{ secrets.COROLOGIX_OTEL_TOKEN }} + fastci_otel_token: ${{ secrets.FASTCI_TOKEN }} - name: Unlabel 'safe to test' uses: actions-ecosystem/action-remove-labels@v1