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
5 changes: 3 additions & 2 deletions .github/workflows/_changelog_entry_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ name: Changelog entry check
on:
workflow_call:

env:
PYTHON_VERSION: 3.12

jobs:
check_changelog_entry:
name: Changelog entry check
runs-on: ubuntu-latest
if: (!startsWith(github.event.pull_request.title, 'docs:'))
env:
PYTHON_VERSION: 3.12

steps:
- name: Checkout repository
Expand Down
87 changes: 0 additions & 87 deletions .github/workflows/_publish_to_pypi.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/_version_conflict_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ name: Version conflict check
on:
workflow_call:

env:
PYTHON_VERSION: 3.12

jobs:
check_version_conflict:
name: Version conflict check
runs-on: ubuntu-latest
if: (!startsWith(github.event.pull_request.title, 'docs:'))
env:
PYTHON_VERSION: 3.12

steps:
- name: Checkout repository
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build_and_deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- master
workflow_dispatch:

env:
NODE_VERSION: 20
PYTHON_VERSION: 3.12

jobs:
build_and_deploy_docs:
environment:
Expand All @@ -15,9 +19,6 @@ jobs:
pages: write
id-token: write
runs-on: ubuntu-latest
env:
NODE_VERSION: 20
PYTHON_VERSION: 3.12

steps:
- name: Checkout repository
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/run_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ on:
- beta
- final

env:
PYTHON_VERSION: 3.12

jobs:
should_release:
name: Check whether to release
if: (!startsWith(github.event.head_commit.message, 'docs:') || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
env:
PYTHON_VERSION: 3.12
steps:
- name: Dummy step
run: "true"
Expand Down
Loading