Add a check for Jenkins results. #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |