Skip to content

Commit

Permalink
build: use unique names for workflows
Browse files Browse the repository at this point in the history
It's confusing to have six different checks, all called "CI".  This
gives them unique names to help devs navigate the checks.
  • Loading branch information
Ned Batchelder authored and nedbat committed Oct 21, 2021
1 parent 6e2277f commit 0f21f11
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Static analysis

on: pull_request

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Javascript tests

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/migrations-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Migrations check

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Pylint checks

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Quality checks

on:
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Unit tests

on:
pull_request:
Expand Down

0 comments on commit 0f21f11

Please sign in to comment.