Skip to content

Commit c3a0b7d

Browse files
vaindclaude
andcommitted
cleanup: remove redundant checkout step names
Remove unnecessary 'name: Checkout repository' from workflow steps. The actions/checkout@v4 action name is self-explanatory and doesn't need additional naming. This reduces visual noise and keeps the focus on the meaningful steps. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3cd47b0 commit c3a0b7d

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/danger-workflow-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jobs:
1515
test-danger-pr-analysis:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Checkout repository
19-
uses: actions/checkout@v4
18+
- uses: actions/checkout@v4
2019

2120
- name: Run danger action
2221
id: danger

.github/workflows/workflow-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ jobs:
1414
test-updater-pr-creation:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Checkout repository
18-
uses: actions/checkout@v4
17+
- uses: actions/checkout@v4
1918

2019
- name: Run updater action
2120
id: updater
@@ -78,8 +77,7 @@ jobs:
7877
test-updater-no-changes:
7978
runs-on: macos-latest
8079
steps:
81-
- name: Checkout repository
82-
uses: actions/checkout@v4
80+
- uses: actions/checkout@v4
8381

8482
- name: Run updater action
8583
id: updater

0 commit comments

Comments
 (0)