Community¶
Need help? Any enhancement or bug to suggest? Want to contribute?
Join the community!
Check out our code¶
You can see code on GitLab.
Any question?¶
Want to contribute?¶
We try to make it easy, and all contributions, even the smallest ones, are more than welcome. This includes bug reports, fixes, documentation, examples...
First, read our contribution guide. Then, remember to announce your intention on the dedicated channel.
Share!¶
Remember to be continuous is a totally free and open-source project. If you like it, please say it!
- add a star ⭐ to every template project you're using (on gitlab.com) -- that will promote the project in the CI/CD catalog
- please share your feedback in the ⭐-i-use-tbc channel
Consider this as our rewarding. Thanks in advance 🙏
To star all TBC templates all at once
curl -sSf "https://gitlab.com/api/v4/groups/to-be-continuous/projects?per_page=100" | jq -r '.[].id' | while read pid; do curl -X POST -H "PRIVATE-TOKEN: $GITLAB_TOKEN" "https://gitlab.com/api/v4/projects/$pid/star"; done
requires curl
& jq