Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ jobs:
- name: Check if OpenAPI files changed
id: check-openapi-changes
run: |
git fetch origin main:main
if git diff --name-only main HEAD | grep -q '^internal/controller/openapi/'; then
git fetch origin main
if git diff --name-only origin/main HEAD | grep -q '^internal/controller/openapi/'; then
echo "changed=true" >> $GITHUB_OUTPUT
else
echo "changed=false" >> $GITHUB_OUTPUT
Expand Down
Loading