File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,16 @@ jobs:
163
163
echo '🚀 Created tag and drafted release for version [${{ inputs.version }}](${{ env.RELEASE_URL }})' >> $GITHUB_STEP_SUMMARY
164
164
echo '✍️ You may now update the release notes and publish the release when ready' >> $GITHUB_STEP_SUMMARY
165
165
166
+ static-analysis :
167
+ needs : prepare-release
168
+ name : " Run Static Analysis"
169
+ uses : ./.github/workflows/static-analysis.yml
170
+ with :
171
+ ref : refs/tags/${{ inputs.version }}
172
+ permissions :
173
+ security-events : write
174
+ id-token : write
175
+
166
176
package-release :
167
177
needs : prepare-release
168
178
name : " Create Release Packages"
Original file line number Diff line number Diff line change 12
12
- " v*.*"
13
13
- " master"
14
14
- " feature/*"
15
- tags :
16
- - " *"
15
+ workflow_call :
16
+ inputs :
17
+ ref :
18
+ description : " The git ref to check"
19
+ type : string
20
+ required : true
17
21
18
22
jobs :
19
23
semgrep :
26
30
- name : " Checkout"
27
31
uses : " actions/checkout@v4"
28
32
with :
33
+ ref : ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
29
34
submodules : true
30
35
31
36
- name : " Scan"
You can’t perform that action at this time.
0 commit comments