Files
clio/.github/workflows/clang-tidy_on_fix_merged.yml
Alex Kremer eeaccbabd9 Add attempt at auto rerun functionality (#1105)
Attempting to refactor clang-tidy as an action and reuse it from two workflows.
2024-01-15 19:48:59 +00:00

12 lines
322 B
YAML

name: On clang-tidy auto fixes merged
on:
pull_request:
types: [closed]
branches: [develop]
jobs:
on_fix_merge:
if: ${{ github.event.pull_request.merged == true && github.event.pull_request.labels.*.name == '[CI] clang-tidy auto fixes' }}
uses: ./.github/workflows/clang-tidy.yml
secrets: inherit