-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsweep.yaml
28 lines (24 loc) · 1.2 KB
/
sweep.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Sweep AI turns bugs & feature requests into code changes (https://sweep.dev)
# For details on our config file, check out our docs at https://docs.sweep.dev/usage/config
branch: 'main'
gha_enabled: True
description: 'jekyll-seo-ai-action is a Github action project, coded in JavaScript Node that will auto-generate descriptions for blog posts, directly in PRs. It works using AI in the backend for the generation of the descriptions. It uses NodeJS, jest.'
draft: False
blocked_dirs: [".github/", "dist/"]
docs:
- NodeJS: https://nodejs.org/dist/latest-v18.x/docs/api/
- GitHub Actions: https://docs.github.com/en/actions
- Jest: https://jestjs.io/docs/getting-started
- OpenAI API: https://platform.openai.com/docs/introduction
sandbox:
install:
- npm install
check:
- npm test
- npm run build
rules:
- There should not be large sections of commented out code.
- Implementations should be simple, straightforward, and clean.
- Any change in the installation process should be documented in the README.md markdown file.
- Tests need to pass after implementing changes. This might require changes to files under the test/ directory.
- Do not modify lines or files outside of the scope of the issue.