DCI Merge Queue #424
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: DCI Merge Queue | |
on: | |
merge_group: | |
jobs: | |
dci-job: | |
name: "DCI Merge Job" | |
runs-on: bos2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history to be able to look at the merge commits in dci-merge.sh | |
- name: DCI Job | |
run: | | |
set -ex | |
export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} | |
./hack/dci-merge.sh ${{ github.event.merge_group.base_sha }} ${{ github.event.merge_group.head_sha }} | |
... |