-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates the tier definitions for supported platforms. This also updates and reformats the README. ~Note that the README badges will display errors until this PR is merged.~ @TerrenceMcGuinness-NOAA updated the gist, so the badges are now showing up correctly in the README. Resolves #3135
- Loading branch information
1 parent
6585798
commit 6c5b9bb
Showing
6 changed files
with
296 additions
and
25 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: WCOSS2 | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- develop | ||
types: [closed] | ||
|
||
jobs: | ||
|
||
getlabels: | ||
runs-on: ubuntu-22.04 | ||
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-Wcoss2-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: wcoss2.json | ||
label: wcoss2 | ||
message: passing | ||
color: green | ||
|
||
failed: | ||
if: contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-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: wcoss2.json | ||
label: wcoss2 | ||
message: failing | ||
color: red | ||
|
||
|
||
pending: | ||
if: "!contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-Passed') && !contains( needs.getlabels.outputs.labels, 'CI-Wcoss2-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: wcoss2.json | ||
label: wcoss2 | ||
message: pending | ||
color: orange |
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
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
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
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