File tree Expand file tree Collapse file tree 2 files changed +2
-25
lines changed Expand file tree Collapse file tree 2 files changed +2
-25
lines changed Original file line number Diff line number Diff line change 2222
2323 env :
2424 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25-
26- - name : Create PR for Documentation
27- id : push_image_info
28- env :
29- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30- run : |
31- set -e
32- echo "Start."
33- # Configure git and Push updates
34- git config --global user.email github-actions[bot]@users.noreply.github.com
35- git config --global user.name github-actions[bot]
36- git config pull.rebase false
37- branch=automated-documentation-update-$GITHUB_RUN_ID
38- git checkout -b $branch
39- message='Automated documentation update'
40- # Add / update and commit
41- git add */**/README.md
42- git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
43- # Push
44- if [ "$NO_UPDATES" != "true" ] ; then
45- git push origin "$branch"
46- gh pr create --title "$message" --body "$message"
47- fi
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ of an `options` object.
1717{
1818 "image" : " mcr.microsoft.com/devcontainers/universal" ,
1919 "features" : {
20- "ghcr.io/ldoguin /devcontainer-features/couchbase-server" : {},
21- "ghcr.io/ldoguin /devcontainer-features/couchbase-shell" : {}
20+ "ghcr.io/couchbase-starter-kit /devcontainer-features/couchbase-server" : {},
21+ "ghcr.io/couchbase-starter-kit /devcontainer-features/couchbase-shell" : {}
2222 }
2323}
2424```
You can’t perform that action at this time.
0 commit comments