Skip to content

Commit 5b144ff

Browse files
committed
reword display names
1 parent 6aac553 commit 5b144ff

7 files changed

Lines changed: 17 additions & 15 deletions

File tree

.github/workflows/build_arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Arduino CLI build
1+
name: Arduino
22

33
on:
44
pull_request:

.github/workflows/build_linux.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linux build
1+
name: Linux
22

33
on:
44
pull_request:
@@ -36,7 +36,7 @@ concurrency:
3636
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
3737

3838
jobs:
39-
using_cmake:
39+
build:
4040
uses: nRF24/.github/.github/workflows/build_linux_cmake.yaml@review-ci
4141
with:
4242
rf24network-ref: ${{ github.sha }}
@@ -59,8 +59,9 @@ jobs:
5959
- compiler: "default" # github runner is hosted on a "amd64"
6060
usr_dir: "local"
6161

62-
deploy-release-assets:
63-
needs: [using_cmake]
62+
deploy:
63+
name: deploy release assets
64+
needs: [build]
6465
permissions:
6566
# needed for uploading release assets
6667
contents: write

.github/workflows/build_nrf_to_nrf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: nRF52840 build
1+
name: nRF52840
22

33
on:
44
pull_request:

.github/workflows/build_platformIO.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PlatformIO build
1+
name: PlatformIO
22

33
on:
44
pull_request:
@@ -51,7 +51,8 @@ jobs:
5151
- "teensy41"
5252
- "teensylc"
5353

54-
deploy-pio-assets:
54+
deploy:
55+
name: deploy release asset
5556
if: startsWith(github.ref, 'refs/tags/')
5657
needs: [validate_lib_json, build]
5758
permissions:

.github/workflows/build_rp2xxx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pico SDK build
1+
name: Pico SDK
22

33
on:
44
push:

.github/workflows/clang_format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: check code formatting
1+
name: Code format
22

33
on:
44
push:
@@ -13,7 +13,7 @@ concurrency:
1313
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1414

1515
jobs:
16-
check_formatting:
16+
check:
1717
uses: nRF24/.github/.github/workflows/cpp_lint.yaml@review-ci
1818
permissions:
1919
# needed to detect changed files

.github/workflows/doxygen.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build Docs
1+
name: Docs
22

33
on:
44
pull_request:
@@ -33,13 +33,13 @@ concurrency:
3333
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
3434

3535
jobs:
36-
build-docs:
36+
build:
3737
uses: nRF24/.github/.github/workflows/build_docs.yaml@review-ci
3838
with:
3939
doxygen-version: '1.11.0'
4040

41-
deploy-docs:
42-
needs: [build-docs]
41+
deploy:
42+
needs: [build]
4343
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')
4444
permissions:
4545
# to authenticate the gh-pages environment

0 commit comments

Comments
 (0)