From a116b4fc8c1f367c1e9eff0369cd5d02887dfa78 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:12:42 +0000 Subject: [PATCH 1/4] Create sweep.yaml config file --- sweep.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sweep.yaml diff --git a/sweep.yaml b/sweep.yaml new file mode 100644 index 0000000..fed4e05 --- /dev/null +++ b/sweep.yaml @@ -0,0 +1,12 @@ +# Sweep AI turns bug fixes & feature requests into code changes (https://sweep.dev) +# For details on our config file, check out our docs at https://docs.sweep.dev + +# If you use this be sure to frequently sync your default branch(main, master) to dev. +branch: 'main' +# If you want to enable GitHub Actions for Sweep, set this to true. +gha_enabled: False +# 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. +# 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. +description: '' + +# Default Values: https://github.com/sweepai/sweep/blob/main/sweep.yaml From 87fb8a1d16d279a41db3758c65d468e553909fac Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:12:42 +0000 Subject: [PATCH 2/4] Create bugfix template --- .github/ISSUE_TEMPLATE/sweep-bugfix.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/sweep-bugfix.yml diff --git a/.github/ISSUE_TEMPLATE/sweep-bugfix.yml b/.github/ISSUE_TEMPLATE/sweep-bugfix.yml new file mode 100644 index 0000000..25f43c3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/sweep-bugfix.yml @@ -0,0 +1,11 @@ +name: Bugfix +title: 'Sweep: ' +description: Write something like "We notice ... behavior when ... happens instead of ..."" +labels: sweep +body: + - type: textarea + id: description + attributes: + label: Details + description: More details about the bug + placeholder: The bug might be in ... file \ No newline at end of file From 4b2647065c42fba7e9855003b00fb62e79674d3a Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:12:43 +0000 Subject: [PATCH 3/4] Create feature template --- .github/ISSUE_TEMPLATE/sweep-feature.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/sweep-feature.yml diff --git a/.github/ISSUE_TEMPLATE/sweep-feature.yml b/.github/ISSUE_TEMPLATE/sweep-feature.yml new file mode 100644 index 0000000..6b985bc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/sweep-feature.yml @@ -0,0 +1,11 @@ +name: Feature Request +title: 'Sweep: ' +description: Write something like "Write an api endpoint that does "..." in the "..." file" +labels: sweep +body: + - type: textarea + id: description + attributes: + label: Details + description: More details for Sweep + placeholder: The new endpoint should use the ... class from ... file because it contains ... logic \ No newline at end of file From 503456bc9bce61e09497637df02e772182c7c876 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:12:43 +0000 Subject: [PATCH 4/4] Create refactor template --- .github/ISSUE_TEMPLATE/sweep-refactor.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/sweep-refactor.yml diff --git a/.github/ISSUE_TEMPLATE/sweep-refactor.yml b/.github/ISSUE_TEMPLATE/sweep-refactor.yml new file mode 100644 index 0000000..ed0f8a6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/sweep-refactor.yml @@ -0,0 +1,11 @@ +name: Refactor +title: 'Sweep: ' +description: Write something like "Modify the ... api endpoint to use ... version and ... framework" +labels: sweep +body: + - type: textarea + id: description + attributes: + label: Details + description: More details for Sweep + placeholder: We are migrating this function to ... version because ... \ No newline at end of file