chore(main): release 0.29.1 #3770
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
# Copyright 2024 Defense Unicorns | |
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial | |
name: Filter | |
# This workflow is triggered on pull requests | |
on: | |
pull_request: | |
# milestoned is added here as a workaround for release-please not triggering PR workflows (PRs should be added to a milestone to trigger the workflow). | |
types: [milestoned, opened, reopened, synchronize] | |
paths-ignore: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- docs/** | |
- .vscode/** | |
- .gitignore | |
- renovate.json | |
- .release-please-config.json | |
- release-please-config.json | |
- CODEOWNERS | |
- LICENSE | |
# Permissions for the GITHUB_TOKEN used by the workflow. | |
permissions: | |
id-token: write # Needed for OIDC-related operations. | |
contents: read # Allows reading the content of the repository. | |
pull-requests: write # Allows writing pull request metadata. | |
packages: read # Allows reading the published GHCR packages | |
# Default settings for all run commands in the workflow jobs. | |
defaults: | |
run: | |
shell: bash -e -o pipefail {0} # Ensures that scripts fail on error and pipefail is set. | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
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 | |
# This job checks if there are changes in specific paths source packages. | |
check-paths: | |
needs: lint-check | |
runs-on: ubuntu-latest | |
name: Select Jobs | |
outputs: | |
packages: ${{ steps.path-filter.outputs.changes }} | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
# Uses a custom action to filter paths for source packages. | |
- name: Check src paths | |
id: path-filter | |
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3 | |
with: | |
filters: .github/filters.yaml | |
# This job triggers a separate workflow for each changed source package, if any. | |
run-package-test: | |
needs: check-paths | |
name: Schedule | |
strategy: | |
matrix: | |
package: ${{ fromJSON(needs.check-paths.outputs.packages) }} | |
flavor: [upstream, registry1, unicorn] | |
test_type: [install] | |
# Upgrade tests are included for all flavors, but ONLY for `all` package tests | |
include: | |
- package: all | |
flavor: registry1 | |
test_type: upgrade | |
- package: all | |
flavor: upstream | |
test_type: upgrade | |
- package: all | |
flavor: unicorn | |
test_type: upgrade | |
uses: ./.github/workflows/test.yaml | |
with: | |
package: ${{ matrix.package }} | |
flavor: ${{ matrix.flavor }} | |
test_type: ${{ matrix.test_type }} | |
secrets: inherit # Inherits all secrets from the parent workflow. | |
evaluate-package-compliance: | |
needs: run-package-test | |
name: Compliance Evaluation | |
strategy: | |
matrix: | |
flavor: [upstream, registry1, unicorn] | |
fail-fast: false | |
uses: ./.github/workflows/compliance.yaml | |
with: | |
flavor: ${{ matrix.flavor }} | |
secrets: inherit # Inherits all secrets from the parent workflow. |