watchdog-go: ciをマージ後に行えるように #3

Merged
usbharu merged 1 commits from watchdog-go-ci into master 2024-03-13 02:02:26 +00:00
1 changed files with 3 additions and 15 deletions

View File

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