diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml index fd1a5c0..9b9d770 100644 --- a/.github/workflows/maven-ci.yml +++ b/.github/workflows/maven-ci.yml @@ -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 }} diff --git a/.github/workflows/maven-jib.yml b/.github/workflows/maven-jib.yml index cd96121..8af50f2 100644 --- a/.github/workflows/maven-jib.yml +++ b/.github/workflows/maven-jib.yml @@ -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 + ############################################################################### # WIP ############################################################################### diff --git a/.github/workflows/maven-set-version.yml b/.github/workflows/maven-set-version.yml index 8bc2f8a..b56df4e 100644 --- a/.github/workflows/maven-set-version.yml +++ b/.github/workflows/maven-set-version.yml @@ -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 }} diff --git a/.github/workflows/maven-snapshot.yml b/.github/workflows/maven-snapshot.yml index d6339c2..f26c12c 100644 --- a/.github/workflows/maven-snapshot.yml +++ b/.github/workflows/maven-snapshot.yml @@ -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 }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..8507c50 --- /dev/null +++ b/.github/workflows/validate.yml @@ -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