Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
8cb9587d
Unverified
Commit
8cb9587d
authored
Mar 17, 2026
by
Anant Sharma
Committed by
GitHub
Mar 17, 2026
Browse files
fix: include framework name in Slack failure notifications (#7472)
Signed-off-by:
Anant Sharma
<
anants@nvidia.com
>
parent
d92d5c77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
.github/workflows/nightly-ci.yml
.github/workflows/nightly-ci.yml
+1
-1
.github/workflows/post-merge-ci.yml
.github/workflows/post-merge-ci.yml
+1
-1
No files found.
.github/workflows/nightly-ci.yml
View file @
8cb9587d
...
@@ -103,7 +103,7 @@ jobs:
...
@@ -103,7 +103,7 @@ jobs:
"https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=100" \
"https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=100" \
>$JOBS_JSON
>$JOBS_JSON
FAILED_JOBS=$(jq -r '.jobs[] | select(.conclusion == "failure") |
":failed: " + (.name | split(" / ") | .[-1])
+ "\\n"' "$JOBS_JSON")
FAILED_JOBS=$(jq -r '.jobs[] | select(.conclusion == "failure") |
.name | split(" / ") | if length > 2 then ":failed: " + .[0] + " > " + .[-1] else ":failed: " + .[-1] end | .
+ "\\n"' "$JOBS_JSON")
echo $FAILED_JOBS
echo $FAILED_JOBS
{
{
echo "FAILED_JOBS<<EOF"
echo "FAILED_JOBS<<EOF"
...
...
.github/workflows/post-merge-ci.yml
View file @
8cb9587d
...
@@ -517,7 +517,7 @@ jobs:
...
@@ -517,7 +517,7 @@ jobs:
"https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=100" \
"https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=100" \
>$JOBS_JSON
>$JOBS_JSON
FAILED_JOBS=$(jq -r '.jobs[] | select(.conclusion == "failure") |
":failed: " + (.name | split(" / ") | .[-1])
+ "\\n"' "$JOBS_JSON")
FAILED_JOBS=$(jq -r '.jobs[] | select(.conclusion == "failure") |
.name | split(" / ") | if length > 2 then ":failed: " + .[0] + " > " + .[-1] else ":failed: " + .[-1] end | .
+ "\\n"' "$JOBS_JSON")
echo $FAILED_JOBS
echo $FAILED_JOBS
{
{
echo "FAILED_JOBS<<EOF"
echo "FAILED_JOBS<<EOF"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment