| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- name: Post PR Review
- on:
- workflow_run:
- workflows: ["Lint"]
- types: [completed]
- jobs:
- clang-tidy-results:
- # Trigger the job only if the previous (insecure) workflow completed successfully
- if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }}
- runs-on: ubuntu-20.04
- steps:
- - name: Download analysis results
- uses: actions/[email protected]
- with:
- script: |
- let artifacts = await github.actions.listWorkflowRunArtifacts({
- owner: context.repo.owner,
- repo: context.repo.repo,
- run_id: ${{ github.event.workflow_run.id }},
- });
- let matchArtifact = artifacts.data.artifacts.filter((artifact) => {
- return artifact.name == "clang-tidy-result"
- })[0];
- let download = await github.actions.downloadArtifact({
- owner: context.repo.owner,
- repo: context.repo.repo,
- artifact_id: matchArtifact.id,
- archive_format: "zip",
- });
- let fs = require("fs");
- fs.writeFileSync("${{github.workspace}}/clang-tidy-result.zip", Buffer.from(download.data));
- - name: Set environment variables
- run: |
- mkdir clang-tidy-result
- unzip clang-tidy-result.zip -d clang-tidy-result
- echo "pr_id=$(cat clang-tidy-result/pr-id.txt)" >> $GITHUB_ENV
- echo "pr_head_repo=$(cat clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_ENV
- echo "pr_head_ref=$(cat clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_ENV
- - uses: actions/checkout@v2
- with:
- repository: ${{ env.pr_head_repo }}
- ref: ${{ env.pr_head_ref }}
- persist-credentials: false
- - name: Redownload analysis results
- uses: actions/[email protected]
- with:
- script: |
- let artifacts = await github.actions.listWorkflowRunArtifacts({
- owner: context.repo.owner,
- repo: context.repo.repo,
- run_id: ${{github.event.workflow_run.id}},
- });
- let matchArtifact = artifacts.data.artifacts.filter((artifact) => {
- return artifact.name == "clang-tidy-result"
- })[0];
- let download = await github.actions.downloadArtifact({
- owner: context.repo.owner,
- repo: context.repo.repo,
- artifact_id: matchArtifact.id,
- archive_format: "zip",
- });
- let fs = require("fs");
- fs.writeFileSync("${{github.workspace}}/clang-tidy-result.zip", Buffer.from(download.data));
- - name: Extract analysis results
- run: |
- mkdir clang-tidy-result
- unzip clang-tidy-result.zip -d clang-tidy-result
- - name: Run clang-tidy-pr-comments action
- uses: platisd/clang-tidy-pr-comments@master
- with:
- github_token: ${{ github.token }}
- clang_tidy_fixes: clang-tidy-result/fixes.yml
- pull_request_id: ${{ env.pr_id }}
- request_changes: true
- suggestions_per_comment: 10
|