Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
run: poetry run -- nox -s lint:import

run-unit-tests:
name: Run Unit Tests (Python-${{ matrix.python-versions }})
name: Unit Tests (Python-${{ matrix.python-versions }})
runs-on: "ubuntu-24.04"
permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/merge-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
run-fast-checks:
name: Run Fast Checks
name: Fast Checks
uses: ./.github/workflows/checks.yml
permissions:
contents: read
Expand All @@ -24,7 +24,7 @@ jobs:
run: echo "Slow tests approved"

run-slow-checks:
name: Run Slow Checks
name: Slow Checks
needs:
- approve-run-slow-tests
uses: ./.github/workflows/slow-checks.yml
Expand Down
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
## Refactoring

* #728: Updated to latest PTB workflows and added `.workflow-patcher.yml`
* #736: Capitalized and shorten names of GitHub workflows
2 changes: 1 addition & 1 deletion exasol/toolbox/templates/github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
run: poetry run -- nox -s package:check

run-unit-tests:
name: Run Unit Tests (Python-${{ matrix.python-versions }})
name: Unit Tests (Python-${{ matrix.python-versions }})
runs-on: "(( os_version ))"
permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions exasol/toolbox/templates/github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ on:

jobs:
merge-gate:
name: Merge Gate
uses: ./.github/workflows/merge-gate.yml
secrets: inherit
permissions:
contents: read

report:
name: Report
needs:
- merge-gate
uses: ./.github/workflows/report.yml
Expand Down
4 changes: 2 additions & 2 deletions exasol/toolbox/templates/github/workflows/merge-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
run-fast-checks:
name: Run Fast Checks
name: Fast Checks
uses: ./.github/workflows/checks.yml
permissions:
contents: read
Expand All @@ -24,7 +24,7 @@ jobs:
run: echo "Slow tests approved"

run-slow-checks:
name: Run Slow Checks
name: Slow Checks
needs:
- approve-run-slow-tests
uses: ./.github/workflows/slow-checks.yml
Expand Down