terraformを実行するべきディレクトリを取得します
moduleを変更したときにそのmoduleに依存しているterraformを検知できます
テストを見ると分かりやすい
git diff --name-only | tfdir get
参照 config.yaml
jobs:
get_target_dirs:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: install tfdir
run: |
curl "https://raw.githubusercontent.com/torana-us/tfdir/master/installer.sh" | bash
- name: get target dir
id: target_dirs
env:
HEAD_REF: ${{ github.head_ref }}
run: |
git diff --diff-filter=AMRCD \
--name-only \
${{ env.HEAD_REF }}..origin/main \
"terraform/**.tf" \
| xargs \
| ./tfdir get
PRにrelease
ラベルを付与してmasterブランチにマージするとReleaseアセットが作成されます
- aquaprj/aquaをinstall
- (Macの場合)
brew install aquaprj/aqua
aqua i
- (Macの場合)
- 初回のみ、lefthookを有効化します
lefthook install
MIT