Skip to content

Commit

Permalink
Refactor: GitHub Actions ワークフローの名前の命名規則を統一
Browse files Browse the repository at this point in the history
大文字始まりだったり小文字始まりだったりが混在してると個人的に気持ち悪い
  • Loading branch information
tsukumijima committed Jul 12, 2024
1 parent 75511f3 commit 57f5bfd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# API docs HTML ファイルを生成し、`gh-pages` ブランチへの push によって GitHub Pages 上のドキュメントとして公開

name: upload-docs
name: Upload Docs

on:
# push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-container.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build-docker
name: Build Docker
on:
# push:
# branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-engine-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: Build
on:
# push:
# branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-latest-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release latest dev build
name: Release Latest Dev Build

# masterブランチが更新されるたびに開発版をビルドしてデプロイする。
# バージョン(タグ)は最新リリースのバージョンを`X.Y.Z`としたときの`X.Y+1.0-dev`。
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-issue-freshness.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Github Issue が停滞状態になっていないか確認する

name: "Test issue freshness"
name: "Test Issue Freshness"
on:
# schedule:
# - cron: "0 3 * * *"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-security.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python 依存パッケージの脆弱性診断を定期的に行う
# NOTE: 公式 Action は API key 等を必要とするため利用しない(https://github.com/pyupio/safety-action/tree/main)

name: test-security
name: Test Security

on:
# schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: test
name: Test

on:
# push:
Expand Down

0 comments on commit 57f5bfd

Please sign in to comment.