mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
30 lines
1.4 KiB
Bash
Executable File
30 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install GitHub CLI extensions
|
|
|
|
# GitHub CLI extension for reviewing Dependabot PRs.
|
|
gh extension install einride/gh-dependabot
|
|
# A GitHub CLI extension that provides summary pull request metrics.
|
|
gh extension install hectcastro/gh-metrics
|
|
# being an extension to view the overall health of an organization's use of actions
|
|
gh extension install rsese/gh-actions-status
|
|
# GitHub CLI extension for label management
|
|
gh extension install heaths/gh-label
|
|
# An opinionated GitHub Cli extension for creating
|
|
# changelogs that adhere to the keep a changelog specification.
|
|
gh extension install chelnak/gh-changelog
|
|
# Safely deletes local branches with no upstream and no un-pushed commits
|
|
gh extension install davidraviv/gh-clean-branches
|
|
# A beautiful CLI dashboard for GitHub 🚀
|
|
gh extension install dlvhdr/gh-dash
|
|
# A github-cli extension script to clone all repositories
|
|
# in an organization, optionally filtering by topic.
|
|
gh extension install matt-bartel/gh-clone-org
|
|
# GitHub CLI extension to generate montage from GitHub user avatars
|
|
gh extension install andyfeller/gh-montage
|
|
# Organisation specific extension for gh cli to retrieve different statistics
|
|
gh extension install VildMedPap/gh-orgstats
|
|
# GitHub CLI extension for generating a report on repository dependencies.
|
|
gh extension install andyfeller/gh-dependency-report
|
|
# gh cli extension to generate account/organization/enterprise reports
|
|
gh extension install stoe/gh-report
|