clang-tidy-pr-comments #49
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
name: clang-tidy-pr-comments | |
on: | |
workflow_run: | |
workflows: | |
- build-and-test-differential | |
types: | |
- completed | |
jobs: | |
clang-tidy-pr-comments: | |
if: ${{ github.event.workflow_run.event == 'pull_request' && contains(fromJson('["success", "failure"]'), github.event.workflow_run.conclusion) }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Download analysis results | |
run: | | |
gh run download ${{ github.event.workflow_run.id }} -D /tmp || true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check if the fixes.yaml file exists | |
id: check-fixes-yaml-existence | |
uses: autowarefoundation/autoware-github-actions/check-file-existence@v1 | |
with: | |
files: /tmp/clang-tidy-result/fixes.yaml | |
- name: Set variables | |
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | |
id: set-variables | |
run: | | |
echo "pr-id=$(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT | |
echo "pr-head-repo=$(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT | |
echo "pr-head-ref=$(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT | |
- name: Check out PR head | |
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ steps.set-variables.outputs.pr-head-repo }} | |
ref: ${{ steps.set-variables.outputs.pr-head-ref }} | |
persist-credentials: false | |
- name: Replace paths in fixes.yaml | |
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | |
run: | | |
sed -i -e "s|/__w/|/home/runner/work/|g" /tmp/clang-tidy-result/fixes.yaml | |
cat /tmp/clang-tidy-result/fixes.yaml | |
- name: Copy fixes.yaml to access from Docker Container Action | |
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | |
run: | | |
cp /tmp/clang-tidy-result/fixes.yaml fixes.yaml | |
- name: Run clang-tidy-pr-comments action | |
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }} | |
uses: platisd/clang-tidy-pr-comments@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
clang_tidy_fixes: fixes.yaml | |
pull_request_id: ${{ steps.set-variables.outputs.pr-id }} |