Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/github_helper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas <47433654+jotoeri@users.noreply.github.com>2022-08-07 16:09:45 +0300
committerGitHub <noreply@github.com>2022-08-07 16:09:45 +0300
commit6c6ef9a3c9696697b7cebd90c16b2377c26a9f39 (patch)
treea8877393fd880e6e7a499075b1ac83d122a73e88
parent718c50e482fa185d1dea974ea7620e22d5773513 (diff)
Indent package.json with tabsfix/indent_tabs
Signed-off-by: Jonas <47433654+jotoeri@users.noreply.github.com>
-rw-r--r--.github/workflows/dispatch-npm-engines.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/dispatch-npm-engines.yml b/.github/workflows/dispatch-npm-engines.yml
index 5f5e115..f1b3da6 100644
--- a/.github/workflows/dispatch-npm-engines.yml
+++ b/.github/workflows/dispatch-npm-engines.yml
@@ -59,10 +59,10 @@ jobs:
repository: ${{ github.repository_owner }}/${{ matrix.repositories }}
- name: Set node version to ${{ env.NODE_VERSION }}
- run: jq '.engines.node = "${{ env.NODE_VERSION }}"' package.json > package-new.json && mv package-new.json package.json
+ run: jq --tab '.engines.node = "${{ env.NODE_VERSION }}"' package.json > package-new.json && mv package-new.json package.json
- name: Set npm version to ${{ env.NPM_VERSION }}
- run: jq '.engines.npm = "${{ env.NPM_VERSION }}"' package.json > package-new.json && mv package-new.json package.json
+ run: jq --tab '.engines.npm = "${{ env.NPM_VERSION }}"' package.json > package-new.json && mv package-new.json package.json
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3