Skip to content

Commit 563a852

Browse files
committed
🔀 Merge master
2 parents 393723a + fe741bd commit 563a852

File tree

166 files changed

+46944
-728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+46944
-728
lines changed

.github/workflows/test-workflows.yml

+20-20
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
-
3535
name: Install dependencies
3636
run: |
37-
apt update -y
38-
echo 'tzdata tzdata/Areas select Europe' | debconf-set-selections
39-
echo 'tzdata tzdata/Zones/Europe select Paris' | debconf-set-selections
40-
DEBIAN_FRONTEND="noninteractive" apt-get install -y graphicsmagick
37+
sudo apt update -y
38+
echo 'tzdata tzdata/Areas select Europe' | sudo debconf-set-selections
39+
echo 'tzdata tzdata/Zones/Europe select Paris' | sudo debconf-set-selections
40+
DEBIAN_FRONTEND="noninteractive" sudo apt-get install -y graphicsmagick
4141
shell: bash
4242
-
4343
name: npm install and build
@@ -75,19 +75,19 @@ jobs:
7575
shell: bash
7676
env:
7777
N8N_ENCRYPTION_KEY: ${{secrets.ENCRYPTION_KEY}}
78-
-
79-
name: Export credentials
80-
if: always()
81-
run: n8n/packages/cli/bin/n8n export:credentials --output=test-workflows/credentials.json --all --pretty
82-
shell: bash
83-
env:
84-
N8N_ENCRYPTION_KEY: ${{secrets.ENCRYPTION_KEY}}
85-
-
86-
name: Commit and push credential changes
87-
if: always()
88-
run: |
89-
cd test-workflows
90-
git config --global user.name 'n8n test bot'
91-
git config --global user.email 'n8n-test-bot@users.noreply.github.com'
92-
git commit -am "Automated credential update"
93-
git push --force --quiet "https://janober:${{ secrets.TOKEN }}@github.com/n8n-io/test-workflows.git" main:main
78+
# -
79+
# name: Export credentials
80+
# if: always()
81+
# run: n8n/packages/cli/bin/n8n export:credentials --output=test-workflows/credentials.json --all --pretty
82+
# shell: bash
83+
# env:
84+
# N8N_ENCRYPTION_KEY: ${{secrets.ENCRYPTION_KEY}}
85+
# -
86+
# name: Commit and push credential changes
87+
# if: always()
88+
# run: |
89+
# cd test-workflows
90+
# git config --global user.name 'n8n test bot'
91+
# git config --global user.email 'n8n-test-bot@users.noreply.github.com'
92+
# git commit -am "Automated credential update"
93+
# git push --force --quiet "https://janober:${{ secrets.TOKEN }}@github.com/n8n-io/test-workflows.git" main:main

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ tmp
55
dist
66
npm-debug.log*
77
lerna-debug.log
8-
package-lock.json
98
yarn.lock
109
google-generated-credentials.json
1110
_START_PACKAGE
1211
.env
1312
.vscode/*
1413
!.vscode/extensions.json
1514
.idea
16-
nodelinter.config.json
15+
nodelinter.config.json
16+
packages/*/package-lock.json

0 commit comments

Comments
 (0)