Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Tasks that contain "OPTIONAL" in all caps are also skipped unless checked, they

## Bots

Checkboxes added by PR bots are automatically excluded from the task list guard. Bots currently excluded: `linear`, `coderabbitai`
Checkboxes added by PR bots are automatically excluded from the task list guard. Bots currently excluded: `linear`, `coderabbitai`, `devin-ai-integration`

## Contributing / Development

Expand Down Expand Up @@ -123,7 +123,7 @@ npm install --omit=dev
npm start
```

Instead of `npm start`, typically in production you'll use a [service file to run via systemd](https://www.freedesktop.org/software/systemd/man/latest/systemd.syntax.html) or similar.
Instead of `npm start`, typically in production you'll use a [service file to run via systemd](https://www.freedesktop.org/software/systemd/man/latest/systemd.syntax.html) or similar.
e.g.
```systemd
[Service]
Expand All @@ -148,7 +148,7 @@ Hosted check is on DO's [SFO3](https://www.digitalocean.com/blog/introducing-a-n

If you discover a security issue please email it to myself at andrew@stapps.io and I will get back to you asap. For all other issues or help you can create an issue on this project - Thank you.

## Credits
## Credits

- [Probot](https://github.com/probot/probot) - Used to build this project
- [WIP](https://github.com/wip/app) - Inspiration for this project
Expand Down
1 change: 1 addition & 0 deletions src/is-bot-comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const BOTS_TO_IGNORE = new Set([
'linear', // ref https://github.com/stilliard/github-task-list-completed/issues/33
'linear[bot]',
'coderabbitai[bot]',
'devin-ai-integration[bot]',
]);

module.exports = (comment) => {
Expand Down
1 change: 1 addition & 0 deletions tests/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ describe('ignores bot checkbox comments across all comment types', () => {
'linear',
'linear[bot]',
'coderabbitai[bot]',
'devin-ai-integration[bot]',
])('ignores checkbox comments from %s', async (botLogin) => {
const botComment = { user: { login: botLogin }, body: '- [ ] bot task' }; // Should not be a blocking task
let capturedTitle;
Expand Down