File tree Expand file tree Collapse file tree 6 files changed +22
-5
lines changed
Expand file tree Collapse file tree 6 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 1919# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2020jobs :
2121 # This workflow contains a single job called "build"
22- build :
22+ self-test :
2323 # The type of runner that the job will run on
2424 runs-on : ubuntu-latest
2525 container : ghcr.io/jcaillon/valet
Original file line number Diff line number Diff line change 11# ## VS Code ###
22.vscode /**
33! .vscode /extensions.json
4- ! .vscode /valet.code-snippets
4+ ! .vscode /settings.json
55
66# ## WINDOWS ###
77desktop.ini
@@ -22,4 +22,8 @@ benchmark.sh
2222try.sh
2323** .tag.gz
2424** .zip
25- lib-valet
25+
26+ # ## Valet ###
27+ lib-valet
28+ lib-valet.md
29+ .vscode /valet.code-snippets
Original file line number Diff line number Diff line change 2222 " rpinski.shebang-snippets" ,
2323 " remisa.shellman" ,
2424 " zjffun.snippetsmanager" ,
25- " gruntfuggly.todo-tree"
25+ " gruntfuggly.todo-tree" ,
26+ " usernamehw.errorlens" ,
27+ " streetsidesoftware.code-spell-checker-french"
2628 ]
2729}
Original file line number Diff line number Diff line change 1+ {
2+ // https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html
3+ "bashIde.globPattern" : " **/@(lib-*|src/*.sh)" ,
4+ "bashIde.includeAllWorkspaceSymbols" : true ,
5+ "terminal.integrated.wordSeparators" : " ()[]{}',\" `─‘’“”|⌜⌝"
6+ }
Original file line number Diff line number Diff line change @@ -28,5 +28,10 @@ function gitlabProjects() {
2828 core::parseArguments " $@ " && eval " ${RETURNED_VALUE} "
2929 core::checkParseResults " ${help:- } " " ${parsingErrors:- } "
3030
31+ if command -v gitlab::getProjects & > /dev/null; then
32+ gitlab::getProjects " ${role} "
33+ else
34+ core::fail " Function 'gitlab::getProjects' not implemented."
35+ fi
3136 : ;
3237}
Original file line number Diff line number Diff line change 2020# done
2121# ```
2222function gitlab::getProjects() {
23- : ;
23+ log::info " Getting projects from GitLab... "
2424}
You can’t perform that action at this time.
0 commit comments