mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
ci: Continue on error if non-blocking compliance step fails (#53398)
This will make rerunning failing jobs easier, as this here is just a pager, not anything we need to rerun - there exists a second check that is blocking and should be rerun, this job however does not need to be. Release Notes: - N/A
This commit is contained in:
parent
e758d257cf
commit
abc2f5f7d6
2 changed files with 2 additions and 0 deletions
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
|
@ -315,6 +315,7 @@ jobs:
|
|||
env:
|
||||
GITHUB_APP_ID: ${{ secrets.ZED_ZIPPY_APP_ID }}
|
||||
GITHUB_APP_KEY: ${{ secrets.ZED_ZIPPY_APP_PRIVATE_KEY }}
|
||||
continue-on-error: true
|
||||
- name: '@actions/upload-artifact compliance-report.md'
|
||||
if: always()
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
|
||||
|
|
|
|||
|
|
@ -231,6 +231,7 @@ fn compliance_check() -> NamedJob {
|
|||
.id("run-compliance-check")
|
||||
.add_env(("GITHUB_APP_ID", vars::ZED_ZIPPY_APP_ID))
|
||||
.add_env(("GITHUB_APP_KEY", vars::ZED_ZIPPY_APP_PRIVATE_KEY))
|
||||
.continue_on_error(true)
|
||||
}
|
||||
|
||||
let job = release_job(&[])
|
||||
|
|
|
|||
Loading…
Reference in a new issue