Skip to content

Commit 64834a5

Browse files
authored
Merge pull request #52 from Wyatt-Stanke/new_brew_workflows
feat(specs): ✨ add more brew workflows
2 parents 52b5492 + 1f907bc commit 64834a5

10 files changed

Lines changed: 80 additions & 4 deletions
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Tap a Homebrew formula repository from GitHub
3+
command: "brew tap {{formula_repository}}"
4+
tags:
5+
- homebrew
6+
description: Taps a Homebrew formula repository (a repository that contains Homebrew formulae) from GitHub.
7+
arguments:
8+
- name: tap_repository
9+
description: The repository to tap (in format of "username/repo")
10+
default_value: ~
11+
source_url: "https://docs.brew.sh/Manpage"
12+
author: Wyatt-Stanke
13+
author_url: "https://github.com/Wyatt-Stanke"
14+
shells: []
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: List all installed Homebrew formulae/casks
3+
command: "brew list"
4+
tags:
5+
- homebrew
6+
description: Lists all installed Homebrew formulae/casks
7+
source_url: "https://docs.brew.sh/Manpage"
8+
author: Wyatt-Stanke
9+
author_url: "https://github.com/Wyatt-Stanke"
10+
shells: []
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Pin a formula to its current version
3+
command: "brew pin {{formula_name}}"
4+
tags:
5+
- homebrew
6+
description: Pins a version of a homebrew formula to its current version, i.e. it will not be updated when a newer version is available.
7+
arguments:
8+
- name: formula_name
9+
description: The formula to pin
10+
default_value: ~
11+
source_url: "https://docs.brew.sh/Manpage"
12+
author: Wyatt-Stanke
13+
author_url: "https://github.com/Wyatt-Stanke"
14+
shells: []
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Reinstall all installed Homebrew formulae/casks
3+
command: "brew list -1 | xargs brew reinstall"
4+
tags:
5+
- homebrew
6+
description: Reinstalls all installed Homebrew formulae and casks
7+
source_url: "https://docs.brew.sh/Manpage"
8+
author: Wyatt-Stanke
9+
author_url: "https://github.com/Wyatt-Stanke"
10+
shells: []

specs/brew/reinstall_formula.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Reinstall a Homebrew formula
3+
command: "brew reinstall {{formula_name}}"
4+
tags:
5+
- homebrew
6+
arguments:
7+
- name: formula_name
8+
description: The formula to reinstall
9+
default_value: ~
10+
description: Reinstall a Homebrew formula
11+
source_url: "https://docs.brew.sh/Manpage"
12+
author: Wyatt-Stanke
13+
author_url: "https://github.com/Wyatt-Stanke"
14+
shells: []
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Unpin a homebrew formula
3+
command: "brew unpin {{formula_name}}"
4+
tags:
5+
- homebrew
6+
description: Unpins a version of a homebrew formula to its current version, i.e. it will not be updated when a newer version is available.
7+
arguments:
8+
- name: formula_name
9+
description: The formula to unpin
10+
default_value: ~
11+
source_url: "https://docs.brew.sh/Manpage"
12+
author: Wyatt-Stanke
13+
author_url: "https://github.com/Wyatt-Stanke"
14+
shells: []

specs/turborepo/create-graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ arguments:
66
- name: pipelines
77
description: The pipelines to run.
88
default_value: start
9-
author: ifthisthenthat
9+
author: Wyatt-Stanke
1010
author_url: "https://github.com/Wyatt-Stanke"

specs/turborepo/create-turborepo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ arguments:
99
- name: directory
1010
description: The directory to use for the Turborepo.
1111
default_value: ./
12-
author: ifthisthenthat
12+
author: Wyatt-Stanke
1313
author_url: "https://github.com/Wyatt-Stanke"

specs/turborepo/run-filtered-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ arguments:
99
- name: filter
1010
description: The package filter to use.
1111
default_value: "*"
12-
author: ifthisthenthat
12+
author: Wyatt-Stanke
1313
author_url: "https://github.com/Wyatt-Stanke"

specs/turborepo/run-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ arguments:
66
- name: pipelines
77
description: The pipelines to run.
88
default_value: start
9-
author: ifthisthenthat
9+
author: Wyatt-Stanke
1010
author_url: "https://github.com/Wyatt-Stanke"

0 commit comments

Comments
 (0)