Then, remember to announce your intention on [the dedicated channel](https://discord.com/channels/917018885088215060/1099353913418850374).
## 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](https://gitlab.com/to-be-continuous)) -- that will promote the project in the CI/CD catalog
* please share your feedback in the [⭐-i-use-tbc](https://discord.com/channels/917018885088215060/1203686227761565728) channel
Consider this as our rewarding.
Thanks in advance 🙏
!!! TIP "To star all TBC templates all at once"
```BASH
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