You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the issue #38, we have instructed Travis to push the backend generated documentation to the oso-api-docs repository.
The only problem now is that the commit history of the oso-api-docs will get bloated, because the documentation is pushed on every backend commit. To prevent this, we want to introduce a trigger keyword [generate api-doc] in the commit messages, which then allows to push to oso-api-docs.
Here are some hints on how to do this
Outsource line 44-55 to a shell script called push-api-documentation.sh
The environment variables which are defined in line 10-15 should be passed as arguments to the script
Check at the beginning of the script if the string [generate api-doc] is included in the commit message. If it is then the commit to oso-api-docs should be pushed
The text was updated successfully, but these errors were encountered:
With the issue #38, we have instructed Travis to push the backend generated documentation to the oso-api-docs repository.
The only problem now is that the commit history of the oso-api-docs will get bloated, because the documentation is pushed on every backend commit. To prevent this, we want to introduce a trigger keyword
[generate api-doc]
in the commit messages, which then allows to push to oso-api-docs.Here are some hints on how to do this
44-55
to a shell script calledpush-api-documentation.sh
10-15
should be passed as arguments to the script[generate api-doc]
is included in the commit message. If it is then the commit to oso-api-docs should be pushedThe text was updated successfully, but these errors were encountered: