Skip to content

Commit

Permalink
Update all workflows names
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Jan 3, 2023
1 parent 99c716b commit 867a78e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: check
name: Check

on:
push:
Expand All @@ -8,6 +8,7 @@ on:

jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand All @@ -18,6 +19,7 @@ jobs:
- name: Test
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand All @@ -31,6 +33,7 @@ jobs:
version: v1.49
args: --timeout 30m
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: format
name: Format code

on:
pull_request:
Expand All @@ -9,6 +9,7 @@ on:

jobs:
fix:
name: Commit fixes
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
---
name: publish
name: Publish version

run-name: ${{ github.ref_name }}
run-name: Publish ${{ github.ref_name }}

on:
push:
tags:
- v*

jobs:
github:
release:
name: GitHub Releases
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: version
name: Cut version

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

on:
workflow_dispatch:
Expand All @@ -11,7 +11,8 @@ on:
required: true

jobs:
release:
tag:
name: Tag
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down

0 comments on commit 867a78e

Please sign in to comment.