Skip to content

Commit 77e408c

Browse files
authored
Merge pull request #4610 from QuantiModo/feature/autoupdate
autoupdate.yaml && source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SO…
2 parents 897c81c + d02b91c commit 77e408c

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

.github/workflows/autoupdate.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: autoupdate
2+
on:
3+
push:
4+
branches:
5+
- feature/*
6+
jobs:
7+
autoupdate:
8+
name: autoupdate
9+
runs-on: ubuntu-18.04
10+
steps:
11+
- uses: docker://chinthakagodawita/autoupdate-action:v1
12+
env:
13+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
14+
# See https://github.com/marketplace/actions/auto-update for options
15+
# DRY_RUN: "false"
16+
# PR_FILTER: "labelled"
17+
# PR_LABELS: "keep up-to-date,integration"
18+
# EXCLUDED_LABELS: "dependencies"
19+
# MERGE_MSG: "Branch was auto-updated."
20+
# RETRY_COUNT: "5"
21+
# RETRY_SLEEP: "300"
22+
# MERGE_CONFLICT_ACTION: "fail"

scripts/cypress_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ else
1111
echo "success-file exists so running ghostinspector tests..."
1212
fi
1313
# shellcheck source=./log_end.sh
14-
source "$IONIC_PATH"/scripts/log_end.sh
14+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/ghost-inspector.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ source "$IONIC_PATH"/scripts/log_start.sh "${BASH_SOURCE[0]}"
66
set -xe
77
npm run test:ghostinspector
88
# shellcheck source=./log_end.sh
9-
source "$IONIC_PATH"/scripts/log_end.sh
9+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/heroku.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ set -xe
88
source "$SCRIPT_FOLDER"/no-root.sh
99
git push [email protected]:medimodo.git HEAD:master -f;
1010
# shellcheck source=./log_end.sh
11-
source "$IONIC_PATH"/scripts/log_end.sh
11+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/mocha.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ set -xe
77
npm run types
88
npm run test:mocha
99
# shellcheck source=./log_end.sh
10-
source "$IONIC_PATH"/scripts/log_end.sh
10+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

scripts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ source "${SCRIPT_FOLDER}"/cypress_run.sh
2020
# shellcheck source=./ghost-inspector.sh
2121
source "${SCRIPT_FOLDER}"/ghost-inspector.sh
2222
# shellcheck source=./log_end.sh
23-
source "$IONIC_PATH"/scripts/log_end.sh
23+
source "$IONIC_PATH"/scripts/log_end.sh "${BASH_SOURCE[0]}"

0 commit comments

Comments
 (0)