feat: 挨拶完了後、自己紹介誘導するように変更 #399
Workflow file for this run
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
# 任意のレジストリに Docker image を公開orビルドする。 | |
# プルリクの作成・更新時に動作する。 | |
name: Docker | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
types: | |
- opened | |
- synchronize | |
paths: | |
- .github/workflows/docker.yml | |
pull_request_target: | |
branches: | |
- main | |
- master | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- closed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.merged == true && github.base_ref || github.event.pull_request.head.sha }} | |
jobs: | |
docker-ci: | |
name: Docker CI | |
uses: book000/templates/.github/workflows/reusable-docker.yml@master | |
with: | |
targets: >- | |
[ | |
{ imageName: "jaoafa/jaotan.ts", context: ".", file: "Dockerfile", packageName: "jaotan.ts" } | |
] | |
secrets: | |
DOCKER_USERNAME: ${{ github.actor }} | |
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }} |