Skip to content

Commit 4b14ec5

Browse files
committed
chore(*): test
1 parent e842f0a commit 4b14ec5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ git:
1414
before_script:
1515
- bash ci/commit-lockfile.sh
1616

17-
after_success:
18-
- bash ci/commit-lockfile.sh
19-
2017
notifications:
2118
email: false
2219
slack:

ci/commit-lockfile.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
#!/bin/bash
22

33
if [[ $TRAVIS_PULL_REQUEST_BRANCH != *"greenkeeper"* ]]; then
4-
# Not a GreenKeeper Pull Request, aborting
54
exit 0
65
fi
76

87
if ! git diff-index --quiet HEAD --; then
98
echo "Commit and push lockfile"
9+
git status
10+
ls -lah
11+
12+
# git checkout $TRAVIS_PULL_REQUEST_BRANCH
1013
git config --global user.email "$GITHUB_EMAIL"
1114
git config --global user.name "Travis CI"
1215
git config --global push.default simple

0 commit comments

Comments
 (0)