Skip to content

Commit 2744004

Browse files
authored
fix: rename scripts in .github/scripts/ to match workflow file names (#1229)
Signed-off-by: lif <[email protected]>
1 parent 0e78b77 commit 2744004

11 files changed

+10
-9
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/bot-assignment-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
REPO: ${{ github.repository }}
2828
run: |
2929
# Make script executable (just in case permissions were lost during checkout)
30-
chmod +x .github/scripts/check_assignment_limit.sh
31-
30+
chmod +x .github/scripts/bot-assignment-check.sh
31+
3232
# Run the script
33-
./.github/scripts/check_assignment_limit.sh
33+
./.github/scripts/bot-assignment-check.sh

.github/workflows/bot-inactivity-unassign-phase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
# - schedule: DRY_RUN = 0 (real actions)
3939
# - workflow_dispatch: DRY_RUN derived from the "dry_run" input
4040
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.dry_run == 'true' && '1' || '0') || '0' }}
41-
run: bash .github/scripts/inactivity_bot.sh
41+
run: bash .github/scripts/bot-inactivity-unassign-phase.sh

.github/workflows/bot-issue-reminder-no-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
REPO: ${{ github.repository }}
3636
DAYS: 7
3737
DRY_RUN: ${{ inputs.dry_run || 'false' }}
38-
run: bash .github/scripts/issue_reminder_no_pr.sh
38+
run: bash .github/scripts/bot-issue-reminder-no-pr.sh

.github/workflows/pr-check-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323

2424
- name: Run local changelog check
2525
run: |
26-
chmod +x .github/scripts/changelog_check.sh
27-
bash .github/scripts/changelog_check.sh
26+
chmod +x .github/scripts/pr-check-changelog.sh
27+
bash .github/scripts/pr-check-changelog.sh

.github/workflows/pr-check-test-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
3131
- name: Check added test file names
3232
run: |
33-
chmod +x .github/scripts/check_test_files.sh
34-
.github/scripts/check_test_files.sh
33+
chmod +x .github/scripts/pr-check-test-files.sh
34+
.github/scripts/pr-check-test-files.sh

0 commit comments

Comments
 (0)