See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| --- | |
| ######################################################################## | |
| # How to create a YAML issue template form in your repository # | |
| ######################################################################## | |
| # To use a YAML issue form in your repository, you must create a new | |
| # file and add it to the .github/ISSUE_TEMPLATE folder in your | |
| # repository by typing the full path to the new file in when prompted | |
| # for a new file's name. | |
| # | |
| # If, for example, you wanted to create the bug.yaml form to add to your |
| # I used this shell.nix to build LineageOS 13.0 for my maguro (Samsung Galaxy Nexus GSM) phone | |
| # The build instructions for normal Linuxes are here: https://wiki.lineageos.org/devices/maguro/build | |
| # For NixOS, follow those instructions but skip anything related to installing packages | |
| # Detailed instructions: | |
| # cd into an empty directory of your choice | |
| # copy this file there | |
| # in nix-shell: | |
| # $ repo init -u https://github.com/LineageOS/android.git -b cm-13.0 | |
| # $ repo sync | |
| # $ source build/envsetup.sh |
| image: "rust:latest" | |
| default: | |
| before_script: | |
| - rustc --version | |
| - cargo --version | |
| stages: | |
| - test |
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |
| #!/bin/bash | |
| function print_help() { | |
| echo -e "Usage: masterbuilder [OPTIONS ...]\n" | |
| echo "Options:" | |
| echo " -t, --target target OS to build --> 'linux', 'windows' or 'darwin'" | |
| echo " -a, --arch target architecture --> depends on OS" | |
| echo " -r, --release masterplan release version" | |
| echo " -gv, --gs-version go-sdl2 version to use" | |
| echo " -gl, --gs-libs unpacked go-sdl2 library path" |