Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Coleen Iona Quadros <[email protected]>
  • Loading branch information
coleenquadros committed Aug 12, 2024
1 parent d8640a0 commit 747720d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/acm-konflux-update-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@ jobs:
- stolostron/kube-thanos

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Checkout upstream
uses: actions/checkout@v4
with:
repository: ${{ matrix.repo }}
fetch-depth: 0
ref: release-2.12
- name: Find github org name from repo name
id: org
run: |

Check failure on line 43 in .github/workflows/acm-konflux-update-pr.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/acm-konflux-update-pr.yaml#L43

shellcheck reported issue in this script: SC2086:info:1:52: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/acm-konflux-update-pr.yaml:43:9: shellcheck reported issue in this script: SC2086:info:1:52: Double quote to prevent globbing and word splitting [shellcheck]
Expand All @@ -47,8 +51,6 @@ jobs:
private_key: ${{ secrets.ACM_APP_PRIVATE_KEY }}
scope: ${{ steps.org.outputs.downstream }}
- name: List PRs and check for Konflux
env:
GH_TOKEN: ${{ steps.pr.outputs.token }}
id: check-prs
run: |

Check failure on line 55 in .github/workflows/acm-konflux-update-pr.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/acm-konflux-update-pr.yaml#L55

shellcheck reported issue in this script: SC2236:style:2:6: Use -n instead of ! -z [shellcheck]
Raw output
.github/workflows/acm-konflux-update-pr.yaml:55:9: shellcheck reported issue in this script: SC2236:style:2:6: Use -n instead of ! -z [shellcheck]

Check failure on line 55 in .github/workflows/acm-konflux-update-pr.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/acm-konflux-update-pr.yaml#L55

shellcheck reported issue in this script: SC2086:info:3:33: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/acm-konflux-update-pr.yaml:55:9: shellcheck reported issue in this script: SC2086:info:3:33: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 55 in .github/workflows/acm-konflux-update-pr.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/acm-konflux-update-pr.yaml#L55

shellcheck reported issue in this script: SC2086:info:5:33: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/acm-konflux-update-pr.yaml:55:9: shellcheck reported issue in this script: SC2086:info:5:33: Double quote to prevent globbing and word splitting [shellcheck]
PR_URL=$(gh pr list --repo ${{ matrix.repo }} --state open | grep -i "Konflux")
Expand All @@ -57,6 +59,8 @@ jobs:
else
echo "konflux_pr_exists=0" >> $GITHUB_OUTPUT
fi
env:
GH_TOKEN: ${{ steps.pr.outputs.token }}
- name: Compose Slack message
id: slack-message
run: |

Check failure on line 66 in .github/workflows/acm-konflux-update-pr.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/acm-konflux-update-pr.yaml#L66

shellcheck reported issue in this script: SC2086:info:2:95: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/acm-konflux-update-pr.yaml:66:9: shellcheck reported issue in this script: SC2086:info:2:95: Double quote to prevent globbing and word splitting [shellcheck]
Expand Down

0 comments on commit 747720d

Please sign in to comment.