Skip to content

Commit d8119f5

Browse files
committed
Update naming
1 parent 7ee21d4 commit d8119f5

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run code checks
1+
name: Code checks
22

33
on:
44
# Runs when manually triggered from the GitHub UI.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docs
1+
name: Doc release
22

33
on:
44
# Runs when manually triggered from the GitHub UI.
@@ -16,8 +16,8 @@ env:
1616
PYTHON_VERSION: 3.14
1717

1818
jobs:
19-
build_and_deploy_docs:
20-
name: Build and deploy docs
19+
release_docs:
20+
name: Doc release
2121
environment:
2222
name: github-pages
2323
permissions:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create a pre-release
1+
name: Pre-release
22

33
on:
44
# Runs when manually triggered from the GitHub UI.

.github/workflows/release.yaml renamed to .github/workflows/manual_release_stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Create a release
1+
name: Stable release
22

33
on:
44
# Runs when manually triggered from the GitHub UI, with options to specify the type of release.

.github/workflows/on_issue.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Update new issue
1+
name: CI (issue)
22

33
on:
44
# Runs when a new issue is opened.
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
label_issues:
11-
name: Label issues
11+
name: Add labels
1212
runs-on: ubuntu-latest
1313
permissions:
1414
issues: write

.github/workflows/on_master.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@ on:
1111
jobs:
1212
doc_checks:
1313
name: Doc checks
14-
uses: ./.github/workflows/doc_checks.yaml
14+
uses: ./.github/workflows/_check_docs.yaml
1515
secrets: inherit
1616

1717
code_checks:
1818
name: Code checks
19-
uses: ./.github/workflows/code_checks.yaml
19+
uses: ./.github/workflows/_check_code.yaml
2020

2121
tests:
2222
name: Tests
23-
uses: ./.github/workflows/tests.yaml
23+
uses: ./.github/workflows/_tests.yaml
2424
secrets: inherit
2525

2626
pre_release:
2727
name: Pre-release
2828
needs: [code_checks, tests]
29-
uses: ./.github/workflows/pre_release.yaml
29+
uses: ./.github/workflows/_release_pre.yaml
3030
secrets: inherit
3131

32-
build_and_deploy_docs:
33-
name: Build and deploy docs
32+
release_docs:
33+
name: Doc release
3434
needs: [doc_checks, pre_release]
35-
uses: ./.github/workflows/docs.yaml
35+
uses: ./.github/workflows/_release_docs.yaml
3636
with:
3737
ref: ${{ needs.pre_release.outputs.changelog_commitish }}
3838
secrets: inherit

.github/workflows/on_pull_request.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515

1616
doc_checks:
1717
name: Doc checks
18-
uses: ./.github/workflows/doc_checks.yaml
18+
uses: ./.github/workflows/_check_docs.yaml
1919
secrets: inherit
2020

2121
code_checks:
2222
name: Code checks
23-
uses: ./.github/workflows/code_checks.yaml
23+
uses: ./.github/workflows/_check_code.yaml
2424

2525
tests:
2626
name: Tests
27-
uses: ./.github/workflows/tests.yaml
27+
uses: ./.github/workflows/_tests.yaml
2828
secrets: inherit

.github/workflows/templates_e2e_tests.yaml renamed to .github/workflows/on_schedule_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Templates end-to-end tests
1+
name: Scheduled tests
22

33
on:
44
# Runs when manually triggered from the GitHub UI.

0 commit comments

Comments
 (0)