Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MINOR: make capitalization of CI job names consistent #2333

Merged
merged 1 commit into from Aug 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cancel.yml
Expand Up @@ -16,7 +16,7 @@
# under the License.

# Attempt to cancel stale workflow runs to save github actions runner time
name: Cancel stale runs
name: cancel

on:
workflow_run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: Coverage
name: coverage

# Trigger only on pushes to master, not pull requests
on:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: Dev
name: dev

# trigger for all PRs and changes to master
on:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: ./dev/release/run-rat.sh .

prettier:
name: Use prettier to check formatting of markdown documents
name: Markdown format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_pr.yml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: Dev PR
name: dev_pr

# Trigger whenever a PR is changed (title as well as new / changed commits)
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: Docs
name: docs

# trigger for all PRs and changes to master
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: Integration
name: integration

# trigger for all PRs that touch certain files and changes to master
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/miri.yaml
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: MIRI
name: miri

# trigger for all PRs that touch certain files and changes to master
on:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Expand Up @@ -15,8 +15,8 @@
# specific language governing permissions and limitations
# under the License.

# tests for workspace wide
name: Rust
# workspace wide tests
name: rust

# trigger for all PRs and changes to master
on:
Expand Down