We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e842f0a commit 4b14ec5Copy full SHA for 4b14ec5
.travis.yml
@@ -14,9 +14,6 @@ git:
14
before_script:
15
- bash ci/commit-lockfile.sh
16
17
-after_success:
18
- - bash ci/commit-lockfile.sh
19
-
20
notifications:
21
email: false
22
slack:
ci/commit-lockfile.sh
@@ -1,12 +1,15 @@
1
#!/bin/bash
2
3
if [[ $TRAVIS_PULL_REQUEST_BRANCH != *"greenkeeper"* ]]; then
4
- # Not a GreenKeeper Pull Request, aborting
5
exit 0
6
fi
7
8
if ! git diff-index --quiet HEAD --; then
9
echo "Commit and push lockfile"
+ git status
10
+ ls -lah
11
+
12
+ # git checkout $TRAVIS_PULL_REQUEST_BRANCH
13
git config --global user.email "$GITHUB_EMAIL"
git config --global user.name "Travis CI"
git config --global push.default simple
0 commit comments