feat: add Package URL (PURL) support for vendor-agnostic package identification #5
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: CI | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Validate COSS Specification | |
| run: python .github/scripts/validate_coss.py | |
| release-please: | |
| needs: validate | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| with: | |
| release-type: simple | |
| extra-files: | | |
| README.md | |
| coss.toml | |
| versions/*/coss.toml | |
| CHANGELOG.md |