Open5

GitHub

ピン留めされたアイテム
aGlnYWtpbg==aGlnYWtpbg==

awesome-gh

public repo list

gh repo list --visibility public --limit 100

public→privateに変更する

gh repo edit <repo-name> --visibility private

リポジトリをブラウザで確認

gh browse

github-api

star順でリポジトリを取得

curl -sS "https://api.github.com/search/repositories?q=stars:%3E0&sort=stars&per_page=100" | jq '.items[] | [.html_url, .description]'

star順でリポジトリを取得(言語絞りこみ)

curl -sS "https://api.github.com/search/repositories?q=language:${lang}&stars:%3E0&sort=stars&per_page=100" | jq '.items[] | [.html_url, .description]'
aGlnYWtpbg==aGlnYWtpbg==

github action 手動実行時にパラメータ入力を強制する

on:
  workflow_dispatch:
    inputs:
      baseurl:
        description: "Base URL:"
        required: true
        type: string
      username:
        description: "Sign in user name:"
        required: true
        type: string
      password:
        description: "Sign in user password:"
        required: true
        type: string