0.1.0
Merge request reports
Activity
requested review from @dorianturba
assigned to @dorianturba
added 2 commits
- Resolved by Karine Bauch
- Resolved by Karine Bauch
- templates/check_symlinks.yml 0 → 100644
1 spec: 2 inputs: 3 stage: 4 description: "The stage of the job." 5 default: test 6 project_path: 7 description: "The path to the project root directory." 8 default: . 9 10 --- 11 check_symlinks: 12 variables: 13 PROJECT_PATH: $[[ inputs.project_path ]] 14 stage: $[[ inputs.stage ]] 15 image: ubuntu:latest changed this line in version 9 of the diff
- templates/check_symlinks.yml 0 → 100644
2 inputs: 3 stage: 4 description: "The stage of the job." 5 default: test 6 project_path: 7 description: "The path to the project root directory." 8 default: . 9 10 --- 11 check_symlinks: 12 variables: 13 PROJECT_PATH: $[[ inputs.project_path ]] 14 stage: $[[ inputs.stage ]] 15 image: ubuntu:latest 16 before_script: 17 - apt-get update && apt-get install -y symlinks changed this line in version 9 of the diff
- Resolved by Karine Bauch
8 10 9 Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! 10 11 ## Add your files 12 13 - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files 14 - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: 15 16 ``` 17 cd existing_repo 18 git remote add origin https://lab.frogg.it/swepy/cicd-templates/check-symlink.git 19 git branch -M main 20 git push -uf origin main 11 ```yaml 12 include: 13 - component: $CI_SERVER_FQDN/swepy/cicd-templates/check-symlinks/check-symlinks@0.1.0 I suggest we remove the "check" prefix. What do you think? It would need to also update the project name and path.
changed this line in version 6 of the diff
75 76 ## Roadmap 77 If you have ideas for releases in the future, it is a good idea to list them in the README. 78 79 ## Contributing 80 State if you are open to contributions and what your requirements are for accepting them. 81 82 For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. 83 84 You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. 85 86 ## Authors and acknowledgment 87 Show your appreciation to those who have contributed to the project. 20 ```yaml 21 include: 22 - component: $CI_SERVER_FQDN/swepy/cicd-templates/check-symlinks/check-symlinks@0.1.0 changed this line in version 9 of the diff
- Resolved by Karine Bauch
- Resolved by Karine Bauch
added 1 commit
- 6f50ff53 - use underscores instead of spaces for job name
Please register or sign in to reply