$ gh migrate -h
PRを作成します
Usage:
gh-migrate [flags]
Flags:
-r, --repo string リポジトリ名
-f, --force cacheを削除して再取得します
-c, --cmd string 引数にあるコマンドを実行します
-s, --sh string 引数にあるシェルスクリプトファイルを実行します
-g, --semgrep string 引数にあるymlファイルをsemgrepとして実行します
-a, --astgrep string 引数にあるymlファイルをast-grepとして実行します
--open string 作成したPRをブラウザで開きます
--with-dev string 作成したPRをgithub.devで開きます
-h, --help help for gh-migrate
# Install
gh extension install HikaruEgashira/gh-migrate
gh migrate --repo HikaruEgashira/gh-migrate --cmd " sed -i '' 's/gh-migrate/gh-migrate2/g' README.md"
https://github.com/HikaruEgashira/gh-migrate/pull/10
Example2: GitHub Actionsのactions/checkoutをv4に変更する
# ./example/upgrade-checkout.yml
id : upgrade-checkout
language : yml
rule : {pattern: "uses: $NAME"}
constraints : {NAME: {regex: ^actions/checkout}}
fix : " uses: actions/checkout@v4"
gh api --paginate " /search/code?q=user:HikaruEgashira+actions/checkout" -q " .items.[].repository.name" | sort -u | xargs -I {} gh migrate --repo HikaruEgashira/{} --astgrep rules/upgrade-actions-checkout.yml