Merge pull request 'watchdog-go: ciをマージ後に行えるように' (#3) from watchdog-go-ci into master

Reviewed-on: #3
This commit is contained in:
usbharu 2024-03-13 02:02:25 +00:00
commit c1295911ca
1 changed files with 3 additions and 15 deletions

View File

@ -1,21 +1,13 @@
on:
pull_request:
types:
- opened
- synchronize
- labeled
- closed
workflow_dispatch:
permissions:
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo ${{github.event.action}}
- run: echo ${{ contains(github.event.pull_request.labels.*.name, 'watchdog-go') }}
build-docker-image:
runs-on: ubuntu-latest
container:
@ -23,12 +15,8 @@ jobs:
defaults:
run:
working-directory: ./watchdog-go
if: |
((github.event.action == 'labeled') &&
(github.event.label.name == 'watchdog-go')) ||
((github.event.action == 'synchronized') &&
contains(github.event.pull_request.labels.*.name, 'watchdog-go')) ||
(github.event.action == 'workflow_dispatch')
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name,'watchdog-go')
steps:
- uses: actions/checkout@v3