Skip to content

Commit 7bd27b8

Browse files
committed
fixup! fixup! New version - 42.16
1 parent 504c5b6 commit 7bd27b8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/trigger-webui.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
# than the COPR srpm build finishes.
5252
- name: Wait for packit COPR build
5353
run: |
54+
exit 0
5455
set -ex
5556
PUSH_TIME=$(date --utc +%Y%m%d%H%M%S -d '${{ github.event.pull_request.head.repo.pushed_at }}')
5657
COPR_NAME="${{ github.event.pull_request.base.user.login }}-${{ github.event.pull_request.base.repo.name }}-${{ github.event.number }}"
@@ -73,7 +74,7 @@ jobs:
7374
mkdir -p ~/.config/cockpit-dev
7475
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/cockpit-dev/github-token
7576
cmd_output=$(bots/tests-trigger --repo ${{ github.repository }} ${{ github.event.number }} fedora-rawhide-boot/anaconda-pr-${{ github.event.number }}@rhinstaller/anaconda-webui 2>&1)
76-
if echo "$cmd_output" | grep -q 'Override with --allow'; then
77+
if echo "$cmd_output" | grep -qv 'Override with --allow'; then
7778
sha="${{ needs.pr-info.outputs.sha }}"
7879
url="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}#artifacts"
7980

.github/workflows/trigger-webui.yml.j2

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
# than the COPR srpm build finishes.
4646
- name: Wait for packit COPR build
4747
run: |
48+
exit 0
4849
set -ex
4950
PUSH_TIME=$(date --utc +%Y%m%d%H%M%S -d '${{ github.event.pull_request.head.repo.pushed_at }}')
5051
COPR_NAME="${{ github.event.pull_request.base.user.login }}-${{ github.event.pull_request.base.repo.name }}-${{ github.event.number }}"
@@ -67,7 +68,7 @@ jobs:
6768
mkdir -p ~/.config/cockpit-dev
6869
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/cockpit-dev/github-token
6970
cmd_output=$(bots/tests-trigger --repo ${{ github.repository }} ${{ github.event.number }} fedora-rawhide-boot/anaconda-pr-${{ github.event.number }}@rhinstaller/anaconda-webui 2>&1)
70-
if echo "$cmd_output" | grep -q 'Override with --allow'; then
71+
if echo "$cmd_output" | grep -qv 'Override with --allow'; then
7172
sha="${{ needs.pr-info.outputs.sha }}"
7273
url="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}#artifacts"
7374

0 commit comments

Comments
 (0)