Files
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
Исходник Постоянная ссылка Ответственный История

Этот файл содержит невидимые символы Юникода
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 }}