Skip to content

task: Test first GHA workflow [DHIS2-18615] #5

task: Test first GHA workflow [DHIS2-18615]

task: Test first GHA workflow [DHIS2-18615] #5

Workflow file for this run

name: Hello World Pipeline
on:
workflow_run:
workflows: ["Check formatting"]
types:
- completed
pull_request:
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Print Hello World
run: echo "Hello, World!"