Skip to content

Commit 867a78e

Browse files
committed
Update all workflows names
1 parent 99c716b commit 867a78e

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: check
2+
name: Check
33

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

99
jobs:
1010
test:
11+
name: Test
1112
runs-on: ubuntu-latest
1213
timeout-minutes: 30
1314
steps:
@@ -18,6 +19,7 @@ jobs:
1819
- name: Test
1920
run: make test
2021
lint:
22+
name: Lint
2123
runs-on: ubuntu-latest
2224
timeout-minutes: 30
2325
steps:
@@ -31,6 +33,7 @@ jobs:
3133
version: v1.49
3234
args: --timeout 30m
3335
build:
36+
name: Build
3437
runs-on: ubuntu-latest
3538
timeout-minutes: 60
3639
steps:

.github/workflows/format.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: format
2+
name: Format code
33

44
on:
55
pull_request:
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
fix:
12+
name: Commit fixes
1213
runs-on: ubuntu-latest
1314
timeout-minutes: 30
1415
steps:

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
2-
name: publish
2+
name: Publish version
33

4-
run-name: ${{ github.ref_name }}
4+
run-name: Publish ${{ github.ref_name }}
55

66
on:
77
push:
88
tags:
99
- v*
1010

1111
jobs:
12-
github:
12+
release:
13+
name: GitHub Releases
1314
runs-on: ubuntu-latest
1415
timeout-minutes: 60
1516
steps:

.github/workflows/version.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
name: version
2+
name: Cut version
33

4-
run-name: ${{ github.event.inputs.version }}
4+
run-name: Cut ${{ github.event.inputs.version }}
55

66
on:
77
workflow_dispatch:
@@ -11,7 +11,8 @@ on:
1111
required: true
1212

1313
jobs:
14-
release:
14+
tag:
15+
name: Tag
1516
runs-on: ubuntu-latest
1617
timeout-minutes: 30
1718
steps:

0 commit comments

Comments
 (0)