Upgrade to Pro — share decks privately, control downloads, hide ads and more …

GitHub Custom Actionのレシピ

GitHub Custom Actionのレシピ

Transcript

  1. 4 ADR Syncの設定 steps: - name: Run ADR Sync Action

    uses: yujiosaka/adr-sync@v1 with: github-token: ${{ secrets.GH_TOKEN }}
  2. 5 GitHub Custom Actionに必要最低限の設定 action.yml name: "ADR Sync" description: "A

    GitHub custom action to synchronize ADRs with GitHub Discussions" author: "Yuji Isobe" inputs: ... github-token: description: "GitHub token with necessary permissions to synchronize ADRs" required: true runs: using: "node20" main: "dist/index.js" Marketplaceのリスティングとオートコンプリートで使⽤される
  3. 6 GitHub Custom Actionに必要最低限の設定 action.yml name: "ADR Sync" description: "A

    GitHub custom action to synchronize ADRs with GitHub Discussions" author: "Yuji Isobe" inputs: ... github-token: description: "GitHub token with necessary permissions to synchronize ADRs" required: true runs: using: "node20" main: "dist/index.js" withで指定できる設定
  4. 7 GitHub Custom Actionに必要最低限の設定 action.yml name: "ADR Sync" description: "A

    GitHub custom action to synchronize ADRs with GitHub Discussions" author: "Yuji Isobe" inputs: ... github-token: description: "GitHub token with necessary permissions to synchronize ADRs" required: true runs: using: "node20" main: "dist/index.js" 今のところnode12、node16、node20、 docker、compositeしか指定できない
  5. 8 GitHub Custom Actionに必要最低限の設定 action.yml name: "ADR Sync" description: "A

    GitHub custom action to synchronize ADRs with GitHub Discussions" author: "Yuji Isobe" inputs: ... github-token: description: "GitHub token with necessary permissions to synchronize ADRs" required: true runs: using: "node20" main: "dist/index.js" 実⾏するファイル
  6. 9 nodeを使⽤する時に便利なパッケージ • @actions/core: withで指定した設定を受け取ったり、アウトプットを定義できる • @actions/github: コンテキスト(イベント名やコミットハッシュ等)を受け取れる import *

    as core from "@actions/core"; import * as github from "@actions/github"; const context = github.context; const arg1 = core.getInput("arg1"); console.log(`This event is triggered by ${context.eventName} with arg1: ${arg1}`);
  7. 10 dockerを使⽤する例 action.yml name: 'Hello World' description: 'Greet someone and

    record the time' inputs: who-to-greet: description: 'Who to greet' required: true runs: using: 'docker' image: 'yujiosaka/hello-world' args: - ${{ inputs.who-to-greet }} entrypointに渡す引数
  8. 12 dockerを使⽤する例 entrypoint.sh #!/bin/sh -l echo "Hello $1" time=$(date) echo

    "time=$time" >> $GITHUB_OUTPUT action.ymlで渡された引数
  9. 13 name: 'Hello World' description: 'Greet someone' inputs: who-to-greet: description:

    'Who to greet' required: true runs: using: "composite" steps: - name: Set Greeting run: echo "Hello $INPUT_WHO_TO_GREET." shell: bash env: INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }} compositeを使⽤する例 通常のactionsと同様に stepsを定義するだけ (shellスクリプトだけで  いい時に便利)
  10. 14 注意点 Linux MacOS Windows Docker ◯ × × JavaScript

    ◯ ◯ ◯ Composite △ △ △ Runnerの環境ごとにstepを書き分けなければいけない
  11. 21 actions/coreとactions/githubは使えるようにしといてよ‧‧‧ • actions/coreとactions/githubはGitHub Custom Actionを作成するのにほぼ必須だが、 初めから使えるようになっているわけではないので、npm installしないといけない • でも、GitHub

    Custom Action実⾏時にnpm installが⾛るわけではないので、 node_modulesごとコミットするか(やりたくない)、パッケージも含めてビルドし て、ビルド後のファイルをコミットしないといけない (当然)こっちにした
  12. 22 { "name": "adr-sync", "version": "1.0.0", "description": "A GitHub custom

    action to synchronize ADRs with GitHub Discussions.", "type": "module", "scripts": { "build": "ncc build src/index.ts --minify", "check": "biome check .", "check:write": "biome check --write .", "prepare": "husky", "test": "vitest run", "test:watch": "vitest" }, ... } package.json TypeScriptのコンパイル、 パッケージのバンドル、 圧縮して、dist/index.jsを作成 (dist/index.jsもコミット必要)