We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35fbc30 commit cd4a137Copy full SHA for cd4a137
2 files changed
.github/workflows/publish.yml
@@ -14,7 +14,7 @@ jobs:
14
rl-scanner:
15
uses: ./.github/workflows/rl-scanner.yml
16
with:
17
- python-version: 3.10
+ python-version: "3.10"
18
artifact-name: "auth0-python.tgz"
19
secrets:
20
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
.github/workflows/rl-scanner.yml
@@ -24,13 +24,12 @@ on:
24
required: true
25
26
jobs:
27
- checkout-build-scan-only:
+ 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/'))
29
runs-on: ubuntu-latest
-
30
- permissions:
31
- pull-requests: write
32
- id-token: write
33
+ outputs:
+ scan-status: ${{ steps.rl-scan-conclusion.outcome }}
+
34
steps:
35
- uses: actions/checkout@v4
36
0 commit comments