Actions: Introduce actionlint (#105224)

This commit is contained in:
Mariell Hoversholm
2025-05-13 08:23:59 +02:00
committed by GitHub
parent 99273f15eb
commit c92ff0ca75
20 changed files with 304 additions and 131 deletions
+5 -5
View File
@@ -166,7 +166,7 @@ jobs:
git commit -m "Update version to $VERSION"
- name: Git push
if: ${{ inputs.dry_run }} != true
if: inputs.dry_run != true
run: git push --set-upstream origin "release/${{ github.run_id }}/$VERSION"
- name: Create PR without backports
@@ -177,10 +177,10 @@ jobs:
run: |
LATEST_FLAG=""
if [ "$LATEST" = "true" ]; then
LATEST_FLAG='-l "release/latest"'
LATEST_FLAG=(-l "release/latest")
fi
gh pr create \
$LATEST_FLAG \
"${LATEST_FLAG[@]}" \
-l "no-changelog" \
--dry-run="$DRY_RUN" \
-B "$BRANCH" \
@@ -195,10 +195,10 @@ jobs:
run: |
LATEST_FLAG=""
if [ "$LATEST" = "true" ]; then
LATEST_FLAG='-l "release/latest"'
LATEST_FLAG=(-l "release/latest")
fi
gh pr create \
$LATEST_FLAG \
"${LATEST_FLAG[@]}" \
-l "product-approved" \
-l "no-changelog" \
--dry-run="$DRY_RUN" \