Docs: Improve how LLMs navigate the source code and handle versioning #388
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: Push Trigger | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - bugfix/** | |
| - feature/** | |
| - juce9 | |
| jobs: | |
| run-ci: | |
| if: github.repository == 'juce-framework/JUCE-dev' | |
| name: Run CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| with: | |
| sparse-checkout: ./.github/workflows | |
| - name: Trigger a CI build using the GitHub API | |
| env: | |
| GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TRIGGER_WORKFLOW_INPUTS: | | |
| {"triggerer":"${{ github.actor }}"} | |
| TRIGGER_COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
| run: python3 ./.github/workflows/trigger_workflow.py | |
| submit-sbom: | |
| if: github.repository == 'juce-framework/JUCE' && github.ref_name == 'master' | |
| name: Submit SBOM | |
| permissions: | |
| contents: write | |
| uses: ./.github/workflows/juce_submit_sbom.yml |