Skip to content

Commit 0eb6a41

Browse files
committed
Merge branch 'master' into chesema-processor-onCancel
2 parents a5598be + 173f559 commit 0eb6a41

File tree

1,353 files changed

+11055
-6524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,353 files changed

+11055
-6524
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CheckWorkflowResults
2+
3+
description: Check overall workflow status and post error to slack if any
4+
5+
inputs:
6+
needs:
7+
description: github needs context as a json string
8+
required: true
9+
type: string
10+
11+
runs:
12+
using: "composite"
13+
steps:
14+
- name: Check Workflow
15+
shell: bash
16+
run: |
17+
export WORKFLOW_RESULT_FILE="/tmp/workflow_results.json"
18+
cat > "$WORKFLOW_RESULT_FILE" << 'EOF'
19+
${{ inputs.needs }}
20+
EOF
21+
python3 ./tests/ci/ci_buddy.py --check-wf-status

.github/actions/release/action.yml

Lines changed: 0 additions & 168 deletions
This file was deleted.

.github/workflows/auto_release.yml

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)