Skip to content

Fixes issues when mixing un-ignore and ignore patterns #1331

Fixes issues when mixing un-ignore and ignore patterns

Fixes issues when mixing un-ignore and ignore patterns #1331

Workflow file for this run

name: Pipeline
on:
push:
pull_request:
workflow_dispatch:
jobs:
tools:
uses: chaseruskin/orbit/.github/workflows/tools.yml@trunk
check-release:
uses: chaseruskin/orbit/.github/workflows/check-release.yml@trunk
needs: [tools]
test:
uses: chaseruskin/orbit/.github/workflows/test.yml@trunk
build:
uses: chaseruskin/orbit/.github/workflows/build.yml@trunk
needs: [tools, check-release, test]
with:
is_release: ${{ needs.check-release.outputs.ready }}
integrity:
uses: chaseruskin/orbit/.github/workflows/integrity.yml@trunk
needs: [tools, build]
system-test:
uses: chaseruskin/orbit/.github/workflows/system-test.yml@trunk
needs: [check-release, integrity]
with:
version: ${{ needs.check-release.outputs.version }}
docker-build:
uses: chaseruskin/orbit/.github/workflows/docker.yml@trunk
needs: [check-release, system-test]
secrets:
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
with:
version: ${{ needs.check-release.outputs.version }}
is_release: ${{ needs.check-release.outputs.ready }}
release:
uses: chaseruskin/orbit/.github/workflows/release.yml@trunk
if: ${{ needs.check-release.outputs.ready == '1' }}
needs: [check-release, system-test, docker-build]
with:
version: ${{ needs.check-release.outputs.version }}