See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "encoding/xml" | |
| "fmt" | |
| "io/ioutil" | |
| "net/http" | |
| "os" |
| variables: | |
| APP_NAME: MyAwesomeApp | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| DEVICE_MAC="41:42:DB:A9:E6:8D" | |
| DEVICE_MAC_UNDERSCORE="${DEVICE_MAC//:/_}" | |
| TIMEOUT=60 | |
| GREEN="\033[0;32m" | |
| RED="\033[0;31m" |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # File must be stored in /etc/profile.d. | |
| # Variables below must be filled. | |
| CHAT_ID="" | |
| BOT_TOKEN="" |
| // Uses Gradle internal API - works on Gradle 7.6 | |
| import groovy.json.JsonSlurper | |
| import org.gradle.api.internal.tasks.userinput.NonInteractiveUserInputHandler | |
| import org.gradle.api.internal.tasks.userinput.UserInputHandler | |
| plugins { | |
| id 'maven-publish' | |
| } |
| import nu.studer.gradle.jooq.JooqGenerate | |
| import org.flywaydb.core.Flyway | |
| import org.flywaydb.core.api.configuration.FluentConfiguration | |
| import org.jooq.meta.jaxb.Configuration | |
| import org.testcontainers.containers.JdbcDatabaseContainer | |
| import org.testcontainers.containers.PostgreSQLContainer | |
| import org.testcontainers.utility.DockerImageName | |
| plugins { | |
| id("nu.studer.jooq") version "7.1.1" |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Required Chrome version can be found here: | |
| # https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable | |
| CHROME_VERSION="" | |
| wget --no-check-certificate \ |
| // Thanks to: https://siberianlaika.ru/node/29/ | |
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| "net/http/httputil" | |
| "net/url" | |
| "os" |
| #!/usr/bin/env bash | |
| # Variables below must be initialized. | |
| set -euo pipefail | |
| GREEN_COLOR="\033[0;32m" | |
| NO_COLOR="\033[0m" | |
| GITHUB_USERNAME="" |