Skip to content

run a DCI job in BOS2 to validate a PR #2

run a DCI job in BOS2 to validate a PR

run a DCI job in BOS2 to validate a PR #2

Workflow file for this run

---
name: DCI Schedule
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'roles/**'
jobs:
dci-job:
name: "Schedule a DCI job"
runs-on: bos2
steps:
- name: Add a dci-check-change job to the queue
run: |
dci-check-change ${{ github.event.pull_request.html_url }}
...