Add new BUFR table file parm/product/bufr_ij9km.txt for GFSv17 C1152 #381
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: Orion | |
on: | |
pull_request_target: | |
branches: | |
- develop | |
types: [closed] | |
jobs: | |
getlabels: | |
runs-on: ubuntu-latest | |
outputs: | |
labels: ${{ steps.id.outputs.labels }} | |
steps: | |
- name: Get Label Steps | |
id: id | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
REPO_NAME: ${{ github.event.repository.name }} | |
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} | |
run: | | |
LABELS1="$(gh api repos/$OWNER/$REPO_NAME/pulls/$PULL_REQUEST_NUMBER --jq '.labels.[].name')" | |
LABELS=$(echo "$LABELS1" | tr '\n' ' ') | |
echo "labels=$LABELS" >> $GITHUB_OUTPUT | |
passed: | |
if: contains( needs.getlabels.outputs.labels, 'CI-Orion-Passed') && github.event.pull_request.merged | |
runs-on: ubuntu-latest | |
needs: | |
- getlabels | |
steps: | |
- name: Passed | |
uses: schneegans/dynamic-badges-action@v1.6.0 | |
with: | |
forceUpdate: true | |
auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | |
gistID: e35aa2904a54deae6bbb1fdc2d960c71 | |
filename: orion.json | |
label: orion | |
message: passing | |
color: green | |
failed: | |
if: contains( needs.getlabels.outputs.labels, 'CI-Orion-Failed') && github.event.pull_request.merged | |
runs-on: ubuntu-latest | |
needs: | |
- getlabels | |
steps: | |
- name: Failed | |
uses: schneegans/dynamic-badges-action@v1.6.0 | |
with: | |
forceUpdate: true | |
auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | |
gistID: e35aa2904a54deae6bbb1fdc2d960c71 | |
filename: orion.json | |
label: orion | |
message: failing | |
color: red | |
pending: | |
if: "!contains( needs.getlabels.outputs.labels, 'CI-Orion-Passed') && !contains( needs.getlabels.outputs.labels, 'CI-Orion-Failed')" | |
runs-on: ubuntu-latest | |
needs: | |
- getlabels | |
steps: | |
- name: Pending | |
uses: schneegans/dynamic-badges-action@v1.6.0 | |
with: | |
forceUpdate: true | |
auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | |
gistID: e35aa2904a54deae6bbb1fdc2d960c71 | |
filename: orion.json | |
label: orion | |
message: pending | |
color: orange |