Skip to content

Commit cd50c72

Browse files
committed
πŸ”§ Improve GitHub Actions workflow names and job labels πŸ”§
.github/workflows/android-ci.yml .github/workflows/development-builds.yml .github/workflows/release.yml
1 parent f8f8b8a commit cd50c72

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

β€Ž.github/workflows/android-ci.ymlβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Android CI
1+
name: Validation Tests
22

33
on:
44
push:
@@ -8,6 +8,7 @@ on:
88

99
jobs:
1010
validate:
11+
name: Code Validation & Tests
1112
runs-on: ubuntu-latest
1213

1314
steps:

β€Ž.github/workflows/development-builds.ymlβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
name: Development Builds
1+
name: Development Build
22

33
on:
44
push:
55
branches: [ main, master, devel, develop ]
66

77
jobs:
88
build-devel:
9+
name: Build Development APKs
910
runs-on: ubuntu-latest
1011

1112
steps:

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Production Release
22

33
on:
44
push:
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
release:
10+
name: Build & Publish Release
1011
runs-on: ubuntu-latest
1112

1213
steps:

0 commit comments

Comments
Β (0)