See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| on: | |
| push: | |
| branches: | |
| - main | |
| name: Deploy website on push | |
| jobs: | |
| web-deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | 
| { | |
| //exludes fies & folders in search indexing | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/env": true, | |
| "**/venv": true | |
| }, | |
| //exludes fies & folders for watcher service | |
| "files.watcherExclude": { | 
| name: Deploy to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main # Replace with your main branch name | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest |