We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2530f8a commit 60e3985Copy full SHA for 60e3985
.github/workflows/openapi.yml
@@ -88,14 +88,13 @@ jobs:
88
--additional-properties 'invokerPackage=Cone\Billingo,variableNamingConvention=camelCase,srcBasePath=src'
89
-
90
name: "Check difference to repository"
91
- id: "list_diff"
92
run: |
93
- if ! git diff --exit-code; then
94
- echo "exit_status=1" >>"${GITHUB_OUTPUT}"
+ if [ -z "$(git status --porcelain)" ]; then
+ echo "No changes!"
+ exit 10
95
fi
96
97
name: "Create pull request"
98
- if: "${{ steps.list_diff.outputs.exit_status == '1' }}"
99
uses: "peter-evans/create-pull-request@v5"
100
with:
101
add-paths: "./"
0 commit comments