MILAB-6902: discover columns above the given ones via a new leaves option
#1002
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| branches: | |
| - main | |
| permissions: | |
| id-token: write | |
| contents: read | |
| env: | |
| BODY_LIMIT: "1048576000" | |
| jobs: | |
| init: | |
| runs-on: hz-ubuntu-dind | |
| outputs: | |
| is-release: ${{ steps.context.outputs.is-release }} | |
| current-version: ${{ steps.context.outputs.current-version }} | |
| steps: | |
| - id: context | |
| uses: milaboratory/github-ci/actions/context/init@v4 | |
| with: | |
| version-canonize: false | |
| branch-versioning: main | |
| check-changesets: | |
| uses: ./.github/workflows/_check-changesets.yaml | |
| secrets: inherit | |
| check-pnpm-consistency: | |
| uses: ./.github/workflows/_check.yaml | |
| secrets: inherit | |
| test: | |
| needs: [init] | |
| uses: ./.github/workflows/_test.yaml | |
| secrets: inherit | |
| debug: | |
| needs: [check-pnpm-consistency, test] | |
| if: ${{ failure() && contains(github.event.pull_request.labels.*.name, 'debug') }} | |
| runs-on: hz-ubuntu-dind | |
| steps: | |
| - name: Interactive debug session (VS Code) | |
| uses: fawazahmed0/action-debug-vscode@main | |
| env: | |
| NPMJS_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |