The Open Collective Bot will comment on issues based on whether the author is already a backer of your Open Collective. It can also tag issues based on the same information.
- 🐶 Easy to use: Simply install Github App and you are ready to go!
- 🛠 Customizable: Change the configuration and our bot will listen!
- ❤ Covered with tests: Keeping that 100% bar!
Put your configuration in .github/opencollective.yml
.
collective: graphql-shield
tiers:
- tiers: '*'
labels: ['backer']
message: 'Hey <link>'
- tiers: ['Sponsor']
labels: ['sponsor']
message: 'Hey sponsor <link>'
invitation: |
Hey <author> :wave:,
This is an optional message to your audience. Check the
default message below.
<link>
See some examples:
- <author>: Author of an issue,
- <link>: Link to your Open Collective.
type Message = string
type GithubLabel = string
type Config = {
collective: string
tiers: TierConfig[]
invitation: Message | false
}
type TierConfig = {
tiers: Tier[] | '*'
labels: GithubLabel[]
message: Message
}
Note that the Open Collective Bot won't comment on issues opened by maintainers or other admins of your Collective.
PS: You can test your configuration at https://bot.opencollective.com/validate
backers
Hey <author> :wave:,
Thanks for backing our project. We will handle your issue with priority support. To make sure we don't forget how special you are, we added a `priority` label to your issue.
Thanks again for backing us :tada:!
invitation
Hey <author> :wave:,
Thank you for opening an issue. We will get back to you as soon as we can. Also, check out our Open Collective and consider backing us.
<link>
PS.: We offer `priority` support for all backers. Don't forget to
add `priority` label when you start backing us :smile:
Summary: This project is developed in TypeScript, running with Node and dependencies are managed with Yarn. To configure the project, you will need to create a GitHub App. Because the project relies on Webhooks, you will also need to setup a proxy for that.
See: docs/development.md
Summary: This project is currently deployed with Vercel. To deploy to staging or production, you need to be a core member of the Open Collective team.
See: docs/deployment.md
MIT @ Matic Zavadlal