ファイル
rocm-systems/.github/workflows/ai_codeql_historical.yml
T
2025-06-20 08:45:15 +02:00

37 行
1.4 KiB
YAML
Raw Blame 履歴

このファイルには不可視のUnicode文字が含まれています
このファイルには人間が識別できない不可視のUnicode文字が含まれており、コンピューターによって特殊な処理が行われる可能性があります。 それが意図的なものと考えられる場合は、この警告を無視して構いません。 不可視文字を表示するにはエスケープボタンを使用します。
このファイルには、他の文字と見間違える可能性があるUnicode文字が含まれています。 それが意図的なものと考えられる場合は、この警告を無視して構いません。 それらの文字を表示するにはエスケープボタンを使用します。
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 }}