Skip to content

Commit

Permalink
test neutral
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 27, 2024
1 parent d35764e commit e877adf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -506,3 +506,20 @@ jobs:
cd python/interpret-core
python -m pip install --upgrade black
black --check .
- name: Mark step with a warning
if: failure()
uses: actions/github-script@v6
with:
script: |
github.rest.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
name: 'Warning: Step might have failed',
head_sha: context.sha,
status: 'completed',
conclusion: 'neutral',
output: {
title: 'Warning',
summary: 'The previous step failed but the workflow continued.'
}
})

0 comments on commit e877adf

Please sign in to comment.