-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bb2a13
commit 172e55d
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 此YAML文件定义了两个作业,分别用于进行安全扫描和开源合规的代码扫描,使用了相同的GitHub Action,并传入了不同的参数。 | ||
name: Alipay Cloud Devops Codescan | ||
on: | ||
pull_request_target: | ||
jobs: | ||
# # stc作业使用了ubuntu-latest作为运行环境,包含了一个步骤(steps)codeScan,该步骤使用了layotto/alipay-cloud-devops-codescan@main作为GitHub Action,并传入了一些参数(parent_uid、private_key、code_type) | ||
stc: # 安全扫描 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: codeScan | ||
uses: layotto/alipay-cloud-devops-codescan@main | ||
with: | ||
parent_uid: ${{ secrets.ALI_PID }} | ||
private_key: ${{ secrets.ALI_PK }} | ||
scan_type: stc | ||
# sca作业也使用了ubuntu-latest作为运行环境。sca作业也包含了一个步骤codeScan,使用了相同的GitHub Action,并传入了相同的参数。 | ||
sca: # 开源合规 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: codeScan | ||
uses: layotto/alipay-cloud-devops-codescan@main | ||
with: | ||
parent_uid: ${{ secrets.ALI_PID }} | ||
private_key: ${{ secrets.ALI_PK }} | ||
scan_type: sca |