Rename COM_ATMOS_GRIB_TMPL as COM_ATMOS_GRIB_GRID_TMPL. #83
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: 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/[email protected] | |
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/[email protected] | |
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/[email protected] | |
with: | |
forceUpdate: true | |
auth: ${{ secrets.CLI_DYNAMIC_BADGES }} | |
gistID: e35aa2904a54deae6bbb1fdc2d960c71 | |
filename: orion.json | |
label: orion | |
message: pending | |
color: orange |