mmenanno/lunchmoney

View on GitHub
.github/workflows/check_pipeline.yml

Summary

Maintainability
Test Coverage
name: Check Pipeline

on:
  push:
    branches-ignore:
        - main
    paths-ignore:
        - ".gitignore"
        - "README.md"
    tags-ignore:
        - v*

jobs:
  update-rbis:
    name: RBI Updater
    uses: ./.github/workflows/rbi-updater.yml
    secrets: inherit

  ci:
    needs: update-rbis
    if: always() && contains(needs.*.result, 'success')
    name: "CI"
    uses: ./.github/workflows/ci.yml
    secrets: inherit