Actions: Introduce actionlint (#105224)
This commit is contained in:
@@ -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" \
|
||||
|
||||
Reference in New Issue
Block a user