diff --git a/.githubprsyncer/.github/workflows/hello.yml b/.githubprsyncer/.github/workflows/hello.yml new file mode 100644 index 000000000..9105ebb83 --- /dev/null +++ b/.githubprsyncer/.github/workflows/hello.yml @@ -0,0 +1,16 @@ +name: Hello World Workflow + +on: + pull_request: + types: [opened, synchronize] + +jobs: + hello-world-job: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Print Hello, World! + run: echo "Hello, World!"