Skip to content

chore(deps): update mise tools #368

chore(deps): update mise tools

chore(deps): update mise tools #368

Workflow file for this run

name: "+ CI/CD"
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, closed]
push:
branches: ["main"]
# Manual trigger for any branch
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint:
# Skip on pull_request:closed as merge commits also triggeres this and they share the same concurrency group
if: |
!contains(github.event.head_commit.message, '[skip ci]') &&
!(github.event_name == 'pull_request' && github.event.action == 'closed')
uses: ./.github/workflows/_lint.yml
permissions:
contents: read
id-token: write
packages: read
audit:
# Skip on pull_request:closed as merge commits also triggeres this and they share the same concurrency group
if: |
!contains(github.event.head_commit.message, '[skip ci]') &&
!(github.event_name == 'pull_request' && github.event.action == 'closed')
uses: ./.github/workflows/_audit.yml
permissions:
contents: read
id-token: write
packages: read
test:
# Skip on pull_request:closed as merge commits also triggeres this and they share the same concurrency group
if: |
!contains(github.event.head_commit.message, '[skip ci]') &&
!(github.event_name == 'pull_request' && github.event.action == 'closed')
uses: ./.github/workflows/_test.yml
permissions:
attestations: write
contents: read
id-token: write
packages: write
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
AIGNOSTICS_FOUNDRY_CORE_LOGFIRE_TOKEN: ${{ secrets.AIGNOSTICS_FOUNDRY_CORE_LOGFIRE_TOKEN }}
AIGNOSTICS_FOUNDRY_CORE_SENTRY_DSN: ${{ secrets.AIGNOSTICS_FOUNDRY_CORE_SENTRY_DSN }}
publish_package:
if: startsWith(github.ref, 'refs/tags/v')
needs: [lint, audit, test]
uses: ./.github/workflows/_package-publish.yml
permissions:
contents: write
id-token: write
packages: read
secrets:
SLACK_RELEASE_BOT_TOKEN: ${{ secrets.SLACK_RELEASE_BOT_TOKEN }}