Skip to content

Commit

Permalink
CI change
Browse files Browse the repository at this point in the history
  • Loading branch information
Despire committed Nov 22, 2024
1 parent e294018 commit 938f082
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/CI-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,27 @@ jobs:
steps:
- name: Get PR labels
id: pr-labels
uses: joerick/[email protected].8
uses: joerick/[email protected].9

- name: Print PR labels
id: print-pr-labels
working-directory: ./manifests/testing-framework
run: |
sudo apt update && sudo apt install -y wget tar
wget -q https://github.com/mikefarah/yq/releases/download/v4.27.2/yq_linux_amd64.tar.gz -O - |\
tar xz && mv yq_linux_amd64 yq
test-sets=$(yq '.secretGenerator[].name' kustomization.yaml)
for set in $test-sets; do
echo $set
done
if [ -n "$GITHUB_PR_LABEL_TEST-SET-AUTOSCALING" ]; then
echo "autoscaling test-set"
fi
rm -f yq
merge-branch:
if: github.event.pull_request.draft == false
Expand Down

0 comments on commit 938f082

Please sign in to comment.