Skip to content

Commit

Permalink
ci: adjust job names to snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Nov 1, 2024
1 parent e937bd9 commit 7deaf5e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI
on: [ push, pull_request ]
jobs:
Build:
build:

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CODE_SCANNING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '**/*.md'

jobs:
CodeQL-Build:
codeql-build:
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MERGE_MAIN_TO_DEVELOP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- "main"

jobs:
Merge_main_to_develop:
merge_main_to_develop:
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/POST_RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
post-release:
post_release:

strategy:
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/RELEASE.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: RELEASE
on:
push:
branches:
- main
- develop
name: release
jobs:
release-please:
release_please:
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag: ${{ steps.release.outputs.tag_name }}
Expand All @@ -23,8 +23,8 @@ jobs:
release-type: node

publish:
needs: release-please
if: ${{ needs.release-please.outputs.release_created }}
needs: release_please
if: ${{ needs.release_please.outputs.release_created }}

runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7deaf5e

Please sign in to comment.