Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/premerge-distro-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ jobs:
with:
persist-credentials: false

- name: Install GitHub CLI
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends gh

- id: context
name: Validate triggering workflow context
env:
Expand All @@ -74,6 +80,12 @@ jobs:
with:
persist-credentials: false

- name: Install GitHub CLI
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends gh

- id: check
name: Start distro validation Check Run
env:
Expand Down Expand Up @@ -134,6 +146,12 @@ jobs:
with:
persist-credentials: false

- name: Install GitHub CLI
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends gh

- name: Publish failure status
env:
GH_TOKEN: ${{ github.token }}
Expand Down Expand Up @@ -168,6 +186,12 @@ jobs:
with:
persist-credentials: false

- name: Install GitHub CLI
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends gh

- id: callback
name: Validate returned distro result
env:
Expand All @@ -192,6 +216,12 @@ jobs:
with:
persist-credentials: false

- name: Install GitHub CLI
run: |
set -euo pipefail
sudo apt-get update
sudo apt-get install -y --no-install-recommends gh

- name: Publish final status and summary
env:
GH_TOKEN: ${{ github.token }}
Expand Down
Loading