Skip to content

Commit

Permalink
rename GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
flxdot committed Apr 1, 2024
1 parent b5dae2f commit d7c69c9
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clean-gh-actions-cache.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#managing-caches
# It has to be investigated if this may also delete some shared caches.
name: cleanup caches by a branch
name: Post PR Cleanup
on:
pull_request:
types:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "lib-py_dev_dependencies-ci"
name: Test - lib/py_dev_dependencies

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/lib-py_dev_dependencies-ci.yml
- .github/workflows/test-lib-py_dev_dependencies.yml
- lib/py_dev_dependencies/**


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "lib-py_edge_device-ci"
name: Test - lib/py_edge_device

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/lib-py_edge_device-ci.yml
- .github/workflows/test-lib-py_edge_device.yml
- lib/py_edge_device/**
- lib/py_edge_interface/**
- lib/py_dev_dependencies/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "lib-py_edge_interface-ci"
name: Test - lib/py_edge_interface

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/lib-py_edge_interface-ci.yml
- .github/workflows/test-lib-py_edge_interface.yml
- lib/py_edge_interface/**
- lib/py_dev_dependencies/**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "lib-py_edge_server-ci"
name: Test - lib/py_edge_server

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/lib-py_edge_server-ci.yml
- .github/workflows/test-lib-py_edge_server.yml
- lib/py_edge_server/**
- lib/py_edge_interface/**
- lib/py_dev_dependencies/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "lib-py_monorepo_manager-ci"
name: Test - lib/py_monorepo_manager

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/lib-py_monorepo_manager-ci.yml
- .github/workflows/test-lib-py_monorepo_manager.yml
- lib/py_monorepo_manager/**
- lib/py_dev_dependencies/**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "services-api-ci"
name: Test - services/api

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/services-api-ci.yml
- .github/workflows/test-services-api.yml
- services/api/**
- lib/py_edge_interface/**
- lib/py_edge_device/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "services-device-ci"
name: Test - services/device

# cancel previous runs if the branch is updated.
concurrency:
Expand All @@ -15,7 +15,7 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, review_requested]
paths:
- .github/workflows/services-device-ci.yml
- .github/workflows/test-services-device.yml
- services/device/**
- lib/py_edge_device/**
- lib/py_dev_dependencies/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"Makefile.jinja2": "Makefile",
"poetry.toml.jinja2": "poetry.toml",
"ci.yml.jinja2": (
"/.github/workflows/{{ project.path_from_root|replace('/', '-') }}-ci.yml"
"/.github/workflows/test-{{ project.path_from_root|replace('/', '-') }}.yml"
),
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This CI workflow will run on every push to a branch that has an open pull request
# not in draft mode.

name: "{{ context.file_stem }}"
name: Test - {{ project.path_from_root }}

# cancel previous runs if the branch is updated.
concurrency:
Expand Down

0 comments on commit d7c69c9

Please sign in to comment.