8000 Extend CI to autofix OpenAPI schema in PRs by stasgavrylov · Pull Request #67271 · metabase/metabase · GitHub
[go: up one dir, main page]

Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
  • Loading branch information
stasgavrylov and Copilot authored Dec 19, 2025
commit 312661eb23e3f94a30e7912333030f9a681118a5
2 changes: 1 addition & 1 deletion .github/workflows/openapi-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to Claude, this enables pushing back to PR branch. If it's not required, let me know.

ref: ${{ github.head_ref }}
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
fetch-depth: 0
- name: Setup Node.js 22
uses: actions/setup-node@v4
Expand Down
Loading
0