feat: derive model/test owners from dbt group owner when no direct owner is set #15
Workflow file for this run
This file contains hidden or 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
| name: Dependency Review | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| base-ref: | |
| description: Base git ref for comparison (e.g. a tag or commit SHA) | |
| required: true | |
| head-ref: | |
| description: Head git ref for comparison (defaults to HEAD) | |
| required: false | |
| default: HEAD | |
| permissions: {} | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@v4 | |
| with: | |
| base-ref: ${{ inputs.base-ref || '' }} | |
| head-ref: ${{ inputs.head-ref || '' }} | |
| config-file: ./.github/dependency-review-config.yml |