Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions .github/workflows/docker-launchql.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
name: Constructive Docker

on:
# push:
# branches:
# - main
# - v1
# - release/*
# pull_request:
# branches:
# - main
# - v1
push:
branches:
- main
- v1
- release/*
pull_request:
branches:
- main
- v1
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch: {}

concurrency:
Expand All @@ -18,7 +19,7 @@ concurrency:

jobs:
build-push-launchql:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
if: github.event_name != 'pull_request'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -116,7 +117,7 @@ jobs:
# Assemble per-architecture images into a single
# multi-arch manifest for each tag.
publish-launchql-manifest:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
needs: build-push-launchql

Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: Docker

on:
# push:
# branches:
# - main
# - v1
# - release/*
# paths:
# - "docker/**"
# - ".github/workflows/docker.yaml"
# pull_request:
# branches:
# - main
# - v1
# paths:
# - "docker/**"
# - ".github/workflows/docker.yaml"
# types: [opened, reopened, synchronize, ready_for_review]
push:
branches:
- main
- v1
- release/*
paths:
- "docker/**"
- ".github/workflows/docker.yaml"
pull_request:
branches:
- main
- v1
paths:
- "docker/**"
- ".github/workflows/docker.yaml"
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
inputs:
process:
Expand Down