Skip to content

Commit

Permalink
refactor: set consistent job names (#344)
Browse files Browse the repository at this point in the history
* refactor: set consistent job names

* chore: undo changes to non-reusable workflows

* refactor: rename workflows

* refactor

* refactor
  • Loading branch information
hknutsen authored Jan 8, 2024
1 parent 37207b5 commit 70688b5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/azure-function.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ on:

jobs:
azure-function:
name: Azure Function
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/azure-webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ on:

jobs:
azure-webapp:
name: Azure Webapp
# The steps for this job assume that OS is Ubuntu.
runs-on: ubuntu-latest
environment:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ on:

jobs:
commitlint:
name: commitlint
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-acr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ on:

jobs:
docker:
name: Docker
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ on:

jobs:
docker:
name: Docker
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ on:

jobs:
dotnet:
name: .NET
# The steps for this job assume that OS is Ubuntu.
# Use the "runtime" input to specify target OS and architecture instead.
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/mkdocs-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ on:

jobs:
mkdocs:
name: MkDocs
runs-on: ubuntu-latest

permissions:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ on:

jobs:
python:
name: Python
runs-on: ubuntu-latest

defaults:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ on:

jobs:
semantic-release:
name: semantic-release
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
super-linter:
name: Super-linter
runs-on: ubuntu-latest
env:
FILTER_REGEX_EXCLUDE: ${{ inputs.filter_regex_exclude }}
Expand Down

0 comments on commit 70688b5

Please sign in to comment.