Add Obs. trimming function to IODA converter of icec and sss_smap #1653
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hera | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Passes on Hera | |
steps: | |
- name: Passed | |
if: ${{ github.event.label.name == 'hera-RT-Passed' }} | |
run: | | |
echo "RT Passed on NOAA RDHPCS Hera" | |
- name: Echo fail | |
if: ${{ github.event.label.name == 'hera-RT-Failed' }} | |
run: | | |
echo "RT failed on NOAA RDHPCS Hera" | |
exit 1 |