diff --git a/.github/workflows/orion.yaml b/.github/workflows/orion.yaml new file mode 100644 index 000000000..275a06a02 --- /dev/null +++ b/.github/workflows/orion.yaml @@ -0,0 +1,21 @@ +name: Testing on Orion +on: + pull_request: + types: [labeled] + +jobs: + test: + runs-on: ubuntu-latest + name: Passes on Orion + + steps: + + - name: Passed + if: ${{ github.event.label.name == 'orion-RT-Passed' }} + run: | + echo "RT Passed on NOAA RDHPCS Orion" + - name: Echo fail + if: ${{ github.event.label.name == 'orion-RT-Failed' }} + run: | + echo "RT failed on NOAA RDHPCS Orion" + exit 1