Skip to content

fix(ci): migrated changelog action on releases for conventional commits only #1848

fix(ci): migrated changelog action on releases for conventional commits only

fix(ci): migrated changelog action on releases for conventional commits only #1848

Workflow file for this run

name: Workflow - Pull Request
on:
workflow_dispatch:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
pull-requests: write
jobs:
linters:
name: Run linters
if: github.event.pull_request.draft == false
uses: ./.github/workflows/linters.yml
rust_check:
name: Run check
if: github.event.pull_request.draft == false
uses: ./.github/workflows/rust-check.yml
linters_cargo:
name: Run Cargo linters
if: github.event.pull_request.draft == false
uses: ./.github/workflows/linters-cargo.yml
needs: rust_check
coverage:
name: Run Coverage
if: github.event.pull_request.draft == false
uses: ./.github/workflows/coverage.yml
secrets: inherit
build:
name: Build Madara
uses: ./.github/workflows/build.yml
js_test:
name: Run JS Tests
uses: ./.github/workflows/starknet-js-test.yml
needs: build