WIP: docs(pipeline): add design plan for PipelineExecutor class #3

Draft
maxp wants to merge 13 commits from feature/pipeline-executor into main
7 changed files with 203 additions and 3 deletions
Showing only changes of commit 8f94cc915c - Show all commits

View File

@@ -4,10 +4,12 @@ on:
push: push:
branches: branches:
- main - main
- '**'
jobs: jobs:
detect-version-change: detect-version-change:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
outputs: outputs:
version_changed: ${{ steps.check.outputs.version_changed }} version_changed: ${{ steps.check.outputs.version_changed }}
steps: steps:
@@ -35,7 +37,7 @@ jobs:
changelog-only: changelog-only:
needs: detect-version-change needs: detect-version-change
if: needs.detect-version-change.outputs.version_changed == 'false' if: github.ref != 'refs/heads/main' || needs.detect-version-change.outputs.version_changed == 'false'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -75,12 +77,12 @@ jobs:
echo "No changes to commit" echo "No changes to commit"
else else
git commit -m "chore(changelog): update unreleased changelog" git commit -m "chore(changelog): update unreleased changelog"
git push origin main git push origin "${GITHUB_REF##refs/heads/}"
fi fi
release: release:
needs: detect-version-change needs: detect-version-change
if: needs.detect-version-change.outputs.version_changed == 'true' if: needs.detect-version-change.outputs.version_changed == 'true' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4