Skip to content

Commit cd4a137

Browse files
fix: RL Scanner (#662)
Fixes for `RL Scanner`
1 parent 35fbc30 commit cd4a137

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
rl-scanner:
1515
uses: ./.github/workflows/rl-scanner.yml
1616
with:
17-
python-version: 3.10
17+
python-version: "3.10"
1818
artifact-name: "auth0-python.tgz"
1919
secrets:
2020
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}

.github/workflows/rl-scanner.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ on:
2424
required: true
2525

2626
jobs:
27-
checkout-build-scan-only:
27+
rl-scanner:
28+
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
2829
runs-on: ubuntu-latest
29-
30-
permissions:
31-
pull-requests: write
32-
id-token: write
33-
30+
outputs:
31+
scan-status: ${{ steps.rl-scan-conclusion.outcome }}
32+
3433
steps:
3534
- uses: actions/checkout@v4
3635
with:

0 commit comments

Comments
 (0)