Improve meta slash commands for creating and updating Claude Code com… #294
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: qa | |
| on: | |
| pull_request: | |
| branches: ['*'] | |
| push: | |
| branches: ['master', 'release-*'] | |
| workflow_dispatch: {} | |
| jobs: | |
| initialize: | |
| uses: ./.github/workflows/core--initializer.yaml | |
| test: | |
| needs: [initialize] | |
| uses: emcd/python-project-common/.github/workflows/xrepo--tester.yaml@gha-1 | |
| with: | |
| matrix-exclusions: '${{ needs.initialize.outputs.matrix-exclusions }}' | |
| platforms: '${{ needs.initialize.outputs.platforms }}' | |
| python-descriptors: '${{ needs.initialize.outputs.python-descriptors }}' | |
| python-versions: '${{ needs.initialize.outputs.python-versions }}' | |
| report: | |
| needs: [initialize, test] | |
| uses: emcd/python-project-common/.github/workflows/xrepo--reporter.yaml@gha-1 | |
| with: | |
| python-version: '${{ fromJSON(needs.initialize.outputs.python-versions)[0] }}' |