Closed jessegeens closed 2 months ago
The current pipeline has a bit of code that generates mock files based on the defined interfaces, and then automatically commits them:
mockery git add . git commit -m 'Generated mock interfaces for https://github.com/cern-eos/grpc-proto/tree/${{ github.sha }}' git push origin main
This makes the pipeline fail, because git commit will return a non-zero exit code when there is nothing to commit. This PR solves this issue.
git commit
The current pipeline has a bit of code that generates mock files based on the defined interfaces, and then automatically commits them:
This makes the pipeline fail, because
git commit
will return a non-zero exit code when there is nothing to commit. This PR solves this issue.