fix: pass --org-name to all templates and remove --application-id #114
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🔍 Commit Message Linter | |
| on: [ pull_request ] | |
| permissions: | |
| contents: read # 📖 Required for repository access | |
| pull-requests: read # 👁️ Required for PR inspection | |
| jobs: | |
| lint_commit_messages: # 🕵️ Enforce commit message conventions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛸 Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: 🎯 Validate Commit Messages | |
| uses: wagoid/commitlint-github-action@v6 | |
| # 📝 Ensures commit messages follow conventional commit standards |