See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Prerequisites: | |
| # - Create a secret with your PAT token. Permissions needed: repo (all) and read:org | |
| # - Create the HELLO_WORLD secret in your environment with some dummy initial value | |
| # | |
| # Notes: | |
| # - You can tell that it works because it masks the secret_body in the echo secret step after it creates the secret 😄 | |
| # - If you don't want to have to pass --repo to gh secret set, then put the actions/checkout@v2 step before the gh secret set step | |
| name: gh-set-secret |
| // Project | |
| plugins { | |
| alias(libs.plugins.ksp) apply false | |
| alias(libs.plugins.hilt) apply false | |
| } | |
| // Module | |
| plugins { | |
| alias(libs.plugins.ksp) | |
| alias(libs.plugins.hilt) |