This is a collection of reusable workflows and composite actions for GitHub that Bakdata uses for open-source projects.
You can use reusable workflows in this repository like this:
---
jobs:
call-workflow-passing-data:
uses: bakdata/ci-templates/.github/workflows/my-workflow.yaml@main
with:
foo: bar
You can use composite actions in this repository like this:
---
steps:
- uses: bakdata/ci-templates/actions/my-action@main
with:
foo: bar
We are using pre-commit in this repository to automatically create the documentation. Make sure you install it here.
Also, follow the following steps to ensure that you can create the documentation locally:
- On MacOS:
- using brew:
brew install tj-actions/tap/auto-doc
- using the GitHub repository:
wget https://github.com/tj-actions/auto-doc/releases/download/v3.4.0/auto-doc_3.4.0_Darwin_arm64.tar.gz tar -xf auto-doc_3.4.0_Darwin_arm64.tar.gz
- using brew:
- Linux:
- using the GitHub repository:
wget https://github.com/tj-actions/auto-doc/releases/download/v3.4.0/auto-doc_3.4.0_Linux_x86_64.tar.gz tar -xf auto-doc_3.4.0_Linux_x86_64.tar.gz
- using the GitHub repository:
In case you used the GitHub repository to install auto-doc
make sure you set the path to the executable file as an environment variable before running the pre-commit command:
export DOC_CMD=./auto-doc
Is mandatory to run pre-commit before pushing your changes. This can be done in two ways:
Run the pre-commit every time before pushing your changes:
pre-commit run --all-files
You can let your pre-commit run automatically every time you execute a git commit
command without having to do it on your own. To do so, run the following command locally just once in the root directory of this repository:
pre-commit install