build: use unique names for workflows
It's confusing to have six different checks, all called "CI". This gives them unique names to help devs navigate the checks.
This commit is contained in:
committed by
Ned Batchelder
parent
6e2277f522
commit
0f21f1194e
2
.github/workflows/ci-static-analysis.yml
vendored
2
.github/workflows/ci-static-analysis.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Static analysis
|
||||
|
||||
on: pull_request
|
||||
|
||||
|
||||
2
.github/workflows/js-tests.yml
vendored
2
.github/workflows/js-tests.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Javascript tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
2
.github/workflows/migrations-check.yml
vendored
2
.github/workflows/migrations-check.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Migrations check
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
2
.github/workflows/pylint-checks.yml
vendored
2
.github/workflows/pylint-checks.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Pylint checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
2
.github/workflows/quality-checks.yml
vendored
2
.github/workflows/quality-checks.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Quality checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
2
.github/workflows/unit-tests-check.yml
vendored
2
.github/workflows/unit-tests-check.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: CI
|
||||
name: Unit tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
Reference in New Issue
Block a user