Skip to content

Add a check for Jenkins results. #2

Add a check for Jenkins results.

Add a check for Jenkins results. #2

Workflow file for this run

name: Jenkins status report
on:
pull_request:
jobs:
# Check and report Jenkins test results. Should use the check_suite trigger when stable, and
# test the PR that triggered it obviously.
jenkins_check:
name: Check Jenkins results
if: github.repository == 'daos-stack/daos'
runs-on: [self-hosted, light]
steps:
- uses: actions/checkout@v4
- name: Run check
run: \[ ! -x ci/daily_status.py \] || ./ci/daily_status.py --pr $NUMBER
env:
NUMBER: ${{ github.event.issue.number }}