Skip to content

OpenAPI diff comment #20

OpenAPI diff comment

OpenAPI diff comment #20

Workflow file for this run

name: OpenAPI diff comment
on:
workflow_run:
workflows: ["Lint and validate OpenAPI specs"]
types: [completed]
jobs:
comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Download diff
uses: actions/download-artifact@v4
with:
name: diff-artifacts
path: diff-artifacts/
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR comment
uses: actions/github-script@v7
with:
script: |
const diff = require('fs').readFileSync('diff-artifacts/diff.md', 'utf8');
const pr_number = require('fs').readFileSync('diff-artifacts/pr_number', 'utf8');
github.rest.issues.createComment({
issue_number: pr_number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '## OpenAPI diff:\n\n' + diff
})