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 d7c69c9 commit 42be508
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
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: "run-monorepo-manager"
name: "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/run-monorepo-manager.yml
- .github/workflows/monorepo-manager.yml
- .monorepo_manager.yaml
- services/**/*
- lib/**/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy Documentation
name: pages-build
on:
push:
branches: [ main ]
paths:
- .github/workflows/deploy-docs.yml
- .github/workflows/pages-build.yml
- pyproject.toml
- docs/**

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Author Assign
name: pr-author-assign

on:
pull_request_target:
Expand Down
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: Post PR Cleanup
name: pr-cache-cleanup
on:
pull_request:
types:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# check is enabled (see below).
#
# That's why we need this dummy check, because not all parts of the code have unit tests
name: "enforce-branch-up-to-date"
name: pr-enforce-branch-up-to-date


on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib-py_dev_dependencies.yml
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: Test - lib/py_dev_dependencies
name: test-lib/py_dev_dependencies

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib-py_edge_device.yml
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: Test - lib/py_edge_device
name: test-lib/py_edge_device

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib-py_edge_interface.yml
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: Test - lib/py_edge_interface
name: test-lib/py_edge_interface

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib-py_edge_server.yml
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: Test - lib/py_edge_server
name: test-lib/py_edge_server

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib-py_monorepo_manager.yml
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: Test - lib/py_monorepo_manager
name: test-lib/py_monorepo_manager

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-services-api.yml
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: Test - services/api
name: test-services/api

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-services-device.yml
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: Test - services/device
name: test-services/device

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
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: Test - {{ project.path_from_root }}
name: test-{{ project.path_from_root }}

# cancel previous runs if the branch is updated.
concurrency:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def write_run_cli_ci(project: LanguageProjects | Project):
"This function should only be called for the monorepo manager project."
) # pragma: no cover

file_path = MONOREPO_ROOT / ".github/workflows/run-monorepo-manager.yml"
file_path = MONOREPO_ROOT / ".github/workflows/monorepo-manager.yml"

write_template(
environment=LANGUAGE_TO_CONTEXT[Language.python].jinja_environment,
Expand Down

0 comments on commit 42be508

Please sign in to comment.