chore: update license #248
This file contains 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
# SPDX-License-Identifier: AGPL-3.0-or-later OR Commercial | |
name: CI Docs | |
on: | |
pull_request: | |
types: [milestoned, opened, reopened, synchronize] | |
paths: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- docs/** | |
- .vscode/** | |
- .gitignore | |
- renovate.json | |
- .release-please-config.json | |
- release-please-config.json | |
- CODEOWNERS | |
- LICENSE | |
jobs: | |
lint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: lint-check | |
uses: ./.github/actions/lint-check | |
run-package-test: | |
needs: lint-check | |
name: Schedule | |
strategy: | |
matrix: | |
package: [all] | |
flavor: [upstream, registry1, unicorn] | |
test_type: [install, upgrade] | |
uses: ./.github/workflows/test-shim.yaml | |
with: | |
package: ${{ matrix.package }} | |
flavor: ${{ matrix.flavor }} | |
test_type: ${{ matrix.test_type }} | |
secrets: inherit # Inherits all secrets from the parent workflow. |