diff --git a/.github/workflows/ci_collect_info.yml b/.github/workflows/ci_collect_info.yml index 2f823ef4f..c72b623dd 100644 --- a/.github/workflows/ci_collect_info.yml +++ b/.github/workflows/ci_collect_info.yml @@ -17,7 +17,7 @@ on: jobs: info: - name: Collect information(server build) + name: Collect information runs-on: ubuntu-latest if: ${{ github.event.workflow_run.conclusion != 'failure' && github.event.repository.full_name == 'reearth/reearth' && (startsWith(github.event.workflow_run.head_branch, 'release/') || github.event.workflow_run.head_branch == 'main' || !startsWith(github.event.head_commit.message, 'v')) }} outputs: diff --git a/.github/workflows/ci_server.yml b/.github/workflows/ci_server.yml index e64b7995e..d77aa13c7 100644 --- a/.github/workflows/ci_server.yml +++ b/.github/workflows/ci_server.yml @@ -10,8 +10,9 @@ on: jobs: ci: - name: Check server change + name: ci runs-on: ubuntu-latest + if: github.event_name != 'push' || !startsWith(github.event.head_commit.message, 'v') defaults: run: working-directory: server diff --git a/.github/workflows/ci_web.yml b/.github/workflows/ci_web.yml index 519ed1978..56eb01cb8 100644 --- a/.github/workflows/ci_web.yml +++ b/.github/workflows/ci_web.yml @@ -10,8 +10,9 @@ on: jobs: ci: - name: Check and build web change + name: ci runs-on: ubuntu-latest + if: github.event_name != 'push' || !startsWith(github.event.head_commit.message, 'v') defaults: run: working-directory: web