mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 16:48:50 +00:00
chore: make job and workflow names intuitive
Signed-off-by: Rui Chen <rui@chenrui.dev>
This commit is contained in:
2
.github/workflows/atlantis-image.yml
vendored
2
.github/workflows/atlantis-image.yml
vendored
@@ -195,7 +195,7 @@ jobs:
|
||||
skip-build:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-build == 'false'
|
||||
name: Build Image
|
||||
name: Skip Building Image
|
||||
strategy:
|
||||
matrix:
|
||||
image_type: [alpine, debian]
|
||||
|
||||
4
.github/workflows/codeql.yml
vendored
4
.github/workflows/codeql.yml
vendored
@@ -105,10 +105,10 @@ jobs:
|
||||
skip-analyze:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-analyze == 'false'
|
||||
name: Analyze
|
||||
name: Skip Analyze
|
||||
strategy:
|
||||
matrix:
|
||||
language: [ 'go', 'javascript' ]
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- run: 'echo "No build required"'
|
||||
- run: 'echo "No build required"'
|
||||
|
||||
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: linter
|
||||
name: lint
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -54,7 +54,7 @@ jobs:
|
||||
skip-lint:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-linting == 'false'
|
||||
name: Linting
|
||||
name: Skip Linting
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- run: 'echo "No build required"'
|
||||
|
||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: tester
|
||||
name: test
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -96,7 +96,7 @@ jobs:
|
||||
skip-test:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-tests == 'false'
|
||||
name: Tests
|
||||
name: Skip Tests
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- run: 'echo "No build required"'
|
||||
|
||||
4
.github/workflows/testing-env-image.yml
vendored
4
.github/workflows/testing-env-image.yml
vendored
@@ -71,7 +71,7 @@ jobs:
|
||||
skip-build:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-build == 'false'
|
||||
name: Build Testing Env Image
|
||||
name: Skip Build Testing Env Image
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- run: 'echo "No build required"'
|
||||
- run: 'echo "No build required"'
|
||||
|
||||
4
.github/workflows/website.yml
vendored
4
.github/workflows/website.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: website
|
||||
name: website-lint-check
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -100,7 +100,7 @@ jobs:
|
||||
skip-link-check:
|
||||
needs: [changes]
|
||||
if: needs.changes.outputs.should-run-link-check == 'false'
|
||||
name: Website Link Check
|
||||
name: Skip Website Link Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: 'echo "No build required"'
|
||||
|
||||
Reference in New Issue
Block a user