We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18ace65 commit 99b8996Copy full SHA for 99b8996
.github/workflows/hermit.yml .github/workflows/ugprade-hermit.yml
@@ -12,6 +12,9 @@ jobs:
12
steps:
13
- uses: actions/checkout@v2
14
- uses: docker://golang:1.15
15
+ env:
16
+ GIT_USER: jenkins-x-bot-test
17
+ GIT_TOKEN: ${{ secrets.GIT_BOT_TOKEN }}
18
name: Upgrade hermit
19
with:
20
entrypoint: ./.github/workflows/upgrade-hermit.sh
.github/workflows/upgrade-hermit.sh
@@ -25,7 +25,7 @@ for r in "${repos[@]}"
25
do
26
echo "upgrading repository https://github.com/jx3-gitops-repositories/$r"
27
cd $TMPDIR
28
- git clone https://github.com/jx3-gitops-repositories/$r.git
+ git clone https://$GIT_USER:$GIT_TOKEN@github.com/jx3-gitops-repositories/$r.git
29
cd "$r"
30
31
source ./bin/activate-hermit
0 commit comments