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
2 changes: 1 addition & 1 deletion .github/workflows/maven-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
default: false

# cancel in-progress runs of the same workflow
# to avoid unecessary runs when multiple commits pushed
# to avoid unnecessary runs when multiple commits pushed
# in a short period of time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/maven-jib.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: Build the JIB image and upload to the container registry

on:
workflow_dispatch:

jobs:
snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@thescouser89 I had to add something in this file as the validation failed otherwise ( https://github.com/project-ncl/shared-github-actions/actions/runs/21911698430?pr=1 ) ; which I guess shows the validation works ;-)

Copy link
Contributor

Choose a reason for hiding this comment

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

Thank you!

###############################################################################
# WIP
###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-set-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
default: ''

# cancel in-progress runs of the same workflow
# to avoid unecessary runs when multiple commits pushed
# to avoid unnecessary runs when multiple commits pushed
# in a short period of time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
required: true

# cancel in-progress runs of the same workflow
# to avoid unecessary runs when multiple commits pushed
# to avoid unnecessary runs when multiple commits pushed
# in a short period of time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Validate GitHub Actions Workflows

on:
pull_request:
paths:
- '.github/workflows/*.yml'

jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Validate GitHub Actions
uses: jazzsequence/github-action-validator@v1