Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# semantic-release is also run to create a new release (if
# warranted by the new commits being built).

name: Build/Test/Publish
name: build
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While monitoring the builds for this PR initially, I realized that I had not yet updated the job names in the workflows like I have done recently in the other github.com projects (cores, sdks, etc.), so I went back and made those changes, then pushed an amended commit...


on:
push:
Expand All @@ -16,7 +16,7 @@ on:
jobs:
detect-secrets:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: Detect-Secrets
name: detect-secrets
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -46,8 +46,8 @@ jobs:
detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline

build:
name: build-test (node v${{ matrix.node-version }})
needs: detect-secrets
name: Build/Test (Node v${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -73,7 +73,7 @@ jobs:

publish-release:
needs: build
name: Semantic-Release
name: semantic-release
if: "github.ref_name == 'main' && github.event_name != 'pull_request'"
runs-on: ubuntu-latest

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# job is separated from the publishing job, as it may fail independently and
# we need to be able to retry it without re-running the publish step.

name: Docker Deploy
name: docker

on:
release:
Expand All @@ -13,11 +13,11 @@ on:
# Allow this workflow to be triggered manually

jobs:
deploy-docker-image:
deploy-image:
# We want to trigger this job ONLY for a published release
# related to the "ibm-openapi-validator" package.
name: deploy-image
if: "contains(github.ref_name, 'ibm-openapi-validator')"
name: Deploy image
runs-on: ubuntu-latest

steps:
Expand Down
80 changes: 40 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.