Skip to content

OpenAPI diff comment #1

OpenAPI diff comment

OpenAPI diff comment #1

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
if: github.event.workflow_run.outputs.diff_generated == 'openapi-diff-log'
permissions:
issues: write
steps:
- name: Download diff
uses: actions/download-artifact@v4
with:
name: openapi-diff-log
- name: Create PR comment
uses: actions/github-script@v7
with:
script: |
const diff = require('fs').readFileSync('diff.md', 'utf8');
github.rest.issues.createComment({
issue_number: github.event.workflow_run.pull_requests[0].number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '## OpenAPI diff:\n\n' + diff
})