Skip to content

Commit f719a8e

Browse files
authored
Merge branch 'main' into aloke/better_readme
2 parents 717f914 + 64834a5 commit f719a8e

13 files changed

Lines changed: 143 additions & 0 deletions
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Discord username (optional, if you're in our discord username please include your username so we can attribute you with our Contributor Discord role--with "#XXXX" like so elvis#4747)
2+
3+
## Description of changes (updated or new workflows)
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: []
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Kill processes at port
2+
description: Kill processes at a port.
3+
author: Maurice Gerhardt
4+
author_url: https://github.com/heymage
5+
tags: ["macos", "shell"]
6+
command: kill $(lsof -t -i:{{port}})
7+
arguments:
8+
- name: port
9+
description: The port where processes should be killed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: List processes at port
2+
description: List processes at a port to see if there are running processes.
3+
author: Maurice Gerhardt
4+
author_url: https://github.com/heymage
5+
tags: ["macos", "shell"]
6+
command: lsof -i:{{port}}
7+
arguments:
8+
- name: port
9+
description: The port that should be checked

specs/turborepo/create-graph.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Create a Turborepo dependency graph.
2+
command: npx turbo run {{pipelines}} --graph
3+
tags:
4+
- turborepo
5+
arguments:
6+
- name: pipelines
7+
description: The pipelines to run.
8+
default_value: start
9+
author: Wyatt-Stanke
10+
author_url: "https://github.com/Wyatt-Stanke"

0 commit comments

Comments
 (0)