From c09ed61abac6c69a204077635edefacf22c068cc Mon Sep 17 00:00:00 2001 From: Egon Meijers Date: Thu, 20 Apr 2023 14:22:24 +0200 Subject: [PATCH 1/3] doc: update git clone command to use stable branch Since master should not be used for installation as described in the readme, it would be better to checkout the stable branch immediately when cloning to prevent people from reporting issues that are not in the stable environment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2771a18e..8f980037 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ _To execute the following commands, open a CMD, Bash, or Powershell window by na you can download the [latest stable release](https://github.com/Significant-Gravitas/Auto-GPT/releases/latest) (`Source code (zip)`, bottom of the page). ```bash - git clone https://github.com/Significant-Gravitas/Auto-GPT.git + git clone -b stable https://github.com/Significant-Gravitas/Auto-GPT.git ``` 3. Navigate to the directory where the repository was downloaded From 2a20ea638e3166f02e55be49ac4b80166660c938 Mon Sep 17 00:00:00 2001 From: Jartto Date: Fri, 21 Apr 2023 00:07:53 +0800 Subject: [PATCH 2/3] Fix README `./run.sh start` -> `./run.sh` (#2523) Co-authored-by: Reinier van der Leer --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2771a18e..cab7a317 100644 --- a/README.md +++ b/README.md @@ -145,10 +145,10 @@ _To execute the following commands, open a CMD, Bash, or Powershell window by na ## 🔧 Usage 1. Run `autogpt` Python module in your terminal. - On linux or mac: - ```bash - # On Linux or Mac: - ./run.sh start + ```bash + # On Linux of Mac: + ./run.sh + # On Windows: .\run.bat ``` From cf7544c146cbe96891312f6400caa82bfd5394dd Mon Sep 17 00:00:00 2001 From: Eddie Cohen <31940792+edcohen08@users.noreply.github.com> Date: Thu, 20 Apr 2023 12:09:20 -0400 Subject: [PATCH 3/3] Cancel in-progress docker CI on outdate (#2619) Co-authored-by: Reinier van der Leer --- .github/workflows/docker-image.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 9c77098e..2fcf6401 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -5,6 +5,9 @@ on: branches: [ "master" ] pull_request: branches: [ "master" ] +concurrency: + group: ${{ format('docker-ci-{0}', github.event.pull_request.number || github.sha) }} + cancel-in-progress: true jobs: