ウェビナー仮実装: サーバー接続部分はよいと思うんだけど、見た目の部分と上位コンポーネントでの変数管理がよくわかんなかった #322
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment preview environment URL | |
on: | |
# pull_request_target を使うにあたって https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ の一読を推奨 | |
pull_request_target: | |
types: | |
- opened | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
comment: | |
name: Comment preview environment URL | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
const prod = `https://${context.payload.pull_request.number}-prod.traq-preview.trapti.tech/` | |
const dev = `https://${context.payload.pull_request.number}-dev.traq-preview.trapti.tech/` | |
const msg = ` | |
Preview (prod) → ${prod} | |
Preview (dev) → ${dev} | |
` | |
await github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.pull_request.number, | |
body: msg | |
}); |