Skip to content

Commit 83a8e54

Browse files
ci: Rename to link to github actions index (#2639)
* ci: Rename to link to github actions * ci: Remove pre/2.8 branch check
1 parent 90f9f8c commit 83a8e54

8 files changed

+14
-103
lines changed

.github/workflows/test_pr_latest_submodule.yaml

Lines changed: 0 additions & 72 deletions
This file was deleted.

.github/workflows/tidy3d-docs-sync-readthedocs-repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "sync-to-readthedocs-repo"
1+
name: "docs/tidy3d/sync-to-readthedocs-repo"
22

33
on:
44
workflow_dispatch:

.github/workflows/tidy3d-python-client-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: tidy3d-python-client-daily
1+
name: public/tidy3d/python-client-daily-run
22

33
on:
44
workflow_dispatch:

.github/workflows/tidy3d-python-client-develop-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "test-develop-cli"
1+
name: "public/tidy3d/python-client-develop-cli"
22

33
on:
44
workflow_dispatch:

.github/workflows/tidy3d-python-client-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "tidy3d-release"
1+
name: "public/tidy3d/python-client-release"
22

33
permissions:
44
contents: write

.github/workflows/tidy3d-python-client-submodules-test.yml

Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
name: "tidy3d-submodule-tests"
1+
name: "public/tidy3d/python-client-submodule-tests"
22

33
on:
4+
push:
5+
branches: [ latest ]
6+
7+
pull_request:
8+
branches:
9+
- latest
10+
411
workflow_dispatch:
512
inputs:
613
run-workflow:
@@ -31,30 +38,6 @@ jobs:
3138
run: |
3239
git submodule update --init --recursive
3340
34-
- name: Determine the latest pre/2.* branch
35-
id: get_latest_pre_branch
36-
run: |
37-
# Fetch all branches
38-
git fetch --all --quiet
39-
40-
# List all remote branches for debugging purposes
41-
echo "Available branches:"
42-
git branch -r
43-
44-
# List branches matching the pre/2.* pattern
45-
BRANCHES=$(git branch -r | grep 'origin/pre/2\.' | sed 's|origin/||' | sort -V)
46-
47-
# Debugging: Print out the matched branches
48-
echo "Matched branches with pre/2.* pattern:"
49-
echo "$BRANCHES"
50-
51-
# Identify the latest branch
52-
LATEST_BRANCH=$(echo "$BRANCHES" | tail -n 1)
53-
54-
# Set the latest branch as an environment variable
55-
echo "LATEST_BRANCH=$LATEST_BRANCH" >> $GITHUB_ENV
56-
echo "Latest pre/2.* branch is: $LATEST_BRANCH"
57-
5841
- name: Check submodules for multiple branches
5942
shell: bash
6043
run: |

.github/workflows/tidy3d-python-client-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "tidy3d-frontend-tests"
1+
name: "public/tidy3d/python-client-tests"
22

33
on:
44
workflow_dispatch:

.github/workflows/tidy3d-python-client-update-lockfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: update-lockfile-PR
1+
name: public/tidy3d/python-client-update-lockfile
22

33
on:
44
workflow_dispatch:

0 commit comments

Comments
 (0)