Add descriptions and default values in generation of project definition #2934
This file contains 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: E2E testing | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
branches: | |
- main | |
repository_dispatch: | |
types: [ok-to-test-command] | |
schedule: | |
- cron: "0 8 * * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
define-matrix: | |
uses: ./.github/workflows/matrix.yaml | |
e2e-trusted: | |
needs: define-matrix | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ${{ fromJSON(needs.define-matrix.outputs.os) }} | |
python-version: ${{ fromJSON(needs.define-matrix.outputs.python) }} | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository | |
uses: ./.github/workflows/test_trusted.yaml | |
with: | |
runs-on: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
python-env: e2e | |
hatch-run: e2e:test | |
secrets: inherit | |
# Repo owner has commented /ok-to-test on a (fork-based) pull request | |
e2e-fork: | |
needs: define-matrix | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ${{ fromJSON(needs.define-matrix.outputs.os) }} | |
python-version: ${{ fromJSON(needs.define-matrix.outputs.python) }} | |
permissions: | |
pull-requests: write | |
checks: write | |
if: | | |
github.event_name == 'repository_dispatch' && | |
github.event.client_payload.slash_command.args.named.sha != '' && | |
contains( | |
github.event.client_payload.pull_request.head.sha, | |
github.event.client_payload.slash_command.args.named.sha | |
) | |
uses: ./.github/workflows/test_fork.yaml | |
with: | |
runs-on: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
python-env: e2e | |
hatch-run: e2e:test | |
secrets: inherit |