Files
rocm-systems/projects/clr/.github/workflows/ai_codeql_historical.yml
T
Lytovchenko, Danylo 38cf648f0e SWDEV-123456 - fix historical AI codeql (#576)
[ROCm/clr commit: f3003d674b]
2025-06-20 08:45:15 +02:00

37 行
1.4 KiB
YAML
原始文件 Blame 歷史記錄

此檔案包含不可見的 Unicode 字元
此檔案包含不可見的 Unicode 字元,這些字元對人類來說是無法區分的,但電腦可能會以不同方式處理。如果您認為這是有意的,可以安全地忽略此警告。使用 Escape 鍵來顯示它們。
此檔案包含可能與其他字元混淆的 Unicode 字元。如果您認為這是有意的,可以安全地忽略此警告。使用 Escape 鍵來顯示它們。
name: AI CodeQL Fix - historical
on:
workflow_dispatch:
inputs:
alerts:
required: false
type: string
description: '️Use either alert IDs or Start/End date!Alert IDs (comma-separated values and/or list e.g. 1152, 1122-1124)'
from_date:
required: false
type: string
description: 'Start date (use YYYY-MM-DD format)'
to_date:
required: false
type: string
description: 'End date (use YYYY-MM-DD format) ⚠️Must be within 15 days of Start date!'
filter_by_rules:
required: false
type: string
description: 'Filter by Rule IDs ⚠️Overrides team-configured rules https://amd.atlassian.net/wiki/x/tSrkNg'
jobs:
call_codeql_reusable_workflow:
uses: AMD-GH-Actions/ai-pr-platform-actions-lib/.github/workflows/reusable_codeql.yml@main
with:
team_name: rocm_clr
alerts: ${{ inputs.alerts }}
from_date: ${{ inputs.from_date }}
to_date: ${{ inputs.to_date }}
filter_by_rules: ${{ inputs.filter_by_rules }}
trigger_event: ${{ github.event_name }}
secrets:
gh_token: ${{ secrets.AI_GH_TOKEN }}
codeql_token: ${{ secrets.AI_CODEQL_API_KEY }}