Skip to content

Commit 9c3a810

Browse files
committed
Renamed files to match their display names. Also renamed jobs within workflows. While not important for most developers, having more descriptive names is helpful for ghcli commands.
1 parent 1cf0297 commit 9c3a810

12 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/check-icla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- opened
66

77
jobs:
8-
main:
8+
check-icla:
99
if: github.event.pull_request.user.login != 'dependabot[bot]'
1010
runs-on: ubuntu-24.04
1111
steps:

.github/workflows/check-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
types: [opened, labeled, unlabeled, synchronize]
99

1010
jobs:
11-
labels:
11+
check-labels:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# Ensure that one of the required labels is present and none of the undesired is absent

.github/workflows/check-merge-conflict.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- synchronize
88

99
jobs:
10-
main:
10+
check-merge-conflicts:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check for dirty pull requests

.github/workflows/crowdin-download-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
update-translations:
9+
download-translations:
1010
if: github.repository_owner == 'opencast'
1111
runs-on: ubuntu-latest
1212
steps:

.github/workflows/crowdin-upload-keys.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: true
1212

1313
jobs:
14-
deploy-translation-keys:
14+
upload-translation-keys:
1515
if: github.repository_owner == 'opencast'
1616
runs-on: ubuntu-latest
1717
steps:

.github/workflows/deploy-main.yml renamed to .github/workflows/deploy-main-branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: false
1212

1313
jobs:
14-
detect:
14+
detect-repo-owner:
1515
if: github.repository_owner == 'opencast'
1616
runs-on: ubuntu-latest
1717
outputs:
@@ -33,7 +33,7 @@ jobs:
3333
#Strip the r/ prefix, giving us just 17.x. If this is main/develop this does nothing
3434
echo "branch=${TEMP#r\/}" >> $GITHUB_OUTPUT
3535
36-
main:
36+
deploy-main-branches:
3737
runs-on: ubuntu-latest
3838
needs: detect
3939
steps:
File renamed without changes.

.github/workflows/deploy-test.yml renamed to .github/workflows/pr-deploy-test-branch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ concurrency:
1111
cancel-in-progress: false
1212

1313
jobs:
14-
detect:
14+
detect-repo-owner:
1515
if: github.repository_owner == 'opencast'
1616
runs-on: ubuntu-latest
1717
outputs:
@@ -36,7 +36,7 @@ jobs:
3636
#Strip the r/ prefix, giving us just 17.x. If this is main/develop this does nothing
3737
echo "branch=${TEMP#r\/}" >> $GITHUB_OUTPUT
3838
39-
main:
39+
deploy-pr:
4040
runs-on: ubuntu-latest
4141
needs: detect
4242
steps:
@@ -139,7 +139,7 @@ jobs:
139139
140140
It might take a few minutes for it to become available.
141141
142-
translations:
142+
check-no-modified-translations:
143143
name: Translations only via Crowdin
144144
if: github.repository_owner == 'opencast'
145145
runs-on: ubuntu-latest

.github/workflows/remove-test.yml renamed to .github/workflows/pr-remove-test-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
PR_NUMBER: ${{ github.event.pull_request.number }}
1414

1515
jobs:
16-
delete_directory:
16+
delete-pr-directory:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Prepare git
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
jobs:
10-
build:
10+
check-npm-build:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout sources

0 commit comments

Comments
 (0)