diff --git a/.github/workflows/hello.yml b/.github/workflows/hello.yml new file mode 100644 index 0000000..3cd2d0b --- /dev/null +++ b/.github/workflows/hello.yml @@ -0,0 +1,14 @@ +name: Print Hello +on: + pull_request: +jobs: + print_hello: + name: "Print Hello" + runs-on: [self-hosted, linux.2xlarge] + env: + REF_TYPE: ${{ github.ref_type }} + LIMIT: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha}} + steps: + - name: Print Hello + run: | + echo "Hello World"