Skip to content

Commit 2e82b0b

Browse files
Configure Sweep (#4)
* Create sweep.yaml config file * Create bugfix template * Create feature template * Create refactor template --------- Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com>
1 parent 042bc40 commit 2e82b0b

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Bugfix
2+
title: 'Sweep: '
3+
description: Write something like "We notice ... behavior when ... happens instead of ...""
4+
labels: sweep
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Details
10+
description: More details about the bug
11+
placeholder: The bug might be in ... file
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Feature Request
2+
title: 'Sweep: '
3+
description: Write something like "Write an api endpoint that does "..." in the "..." file"
4+
labels: sweep
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Details
10+
description: More details for Sweep
11+
placeholder: The new endpoint should use the ... class from ... file because it contains ... logic
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Refactor
2+
title: 'Sweep: '
3+
description: Write something like "Modify the ... api endpoint to use ... version and ... framework"
4+
labels: sweep
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Details
10+
description: More details for Sweep
11+
placeholder: We are migrating this function to ... version because ...

sweep.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Sweep AI turns bug fixes & feature requests into code changes (https://sweep.dev)
2+
# For details on our config file, check out our docs at https://docs.sweep.dev
3+
4+
# If you use this be sure to frequently sync your default branch(main, master) to dev.
5+
branch: 'main'
6+
# By default Sweep will read the logs and outputs from your existing Github Actions. To disable this, set this to false.
7+
gha_enabled: True
8+
# This is the description of your project. It will be used by sweep when creating PRs. You can tell Sweep what's unique about your project, what frameworks you use, or anything else you want.
9+
# Here's an example: sweepai/sweep is a python project. The main api endpoints are in sweepai/api.py. Write code that adheres to PEP8.
10+
description: ''
11+
12+
# Default Values: https://github.com/sweepai/sweep/blob/main/sweep.yaml

0 commit comments

Comments
 (0)