Skip to content

Instantly share code, notes, and snippets.

View tskulbru's full-sized avatar

Torstein S. Skulbru tskulbru

View GitHub Profile
{
"matrix": [
{
"code": "0x00",
"x": 0,
"y": 0,
"w": 4,
"h": 4,
"layers": {
"0": {
@tskulbru
tskulbru / gh-add-repos-to-team.sh
Created May 16, 2024 12:25 — forked from narze/gh-add-repos-to-team.sh
Add repos to team with gh
#!/bin/bash
PERMISSION="push" # Can be one of: pull, push, admin, maintain, triage
ORG="orgname"
TEAM_SLUG="your-team-slug"
# Get names with `gh repo list orgname`
REPOS=(
"orgname/reponame"
)