feat: improve current develope security #80
Workflow file for this run
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: Basic PR Quality Checks | |
| on: | |
| pull_request: | |
| branches: [ "main", "dev" ] | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| checks: write | |
| jobs: | |
| quality-checks: | |
| name: Run Organization Quality Checks | |
| uses: sessatakuma/org-workflows/.github/workflows/entrypoint.yml@main | |
| secrets: | |
| CHECKER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Basic PR Quality Checks (enabled by default) | |
| run-basic-checks: true | |
| # Python Code Quality Checks (optional - uncomment to enable) | |
| # Requires: pyproject.toml with ruff and mypy configured | |
| run-python-checks: true | |
| python-version: '3.11' |