fix: exempt dependabot PRs from title check by PR author, not event actor #1
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: Release Drafter | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened, ready_for_review] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| draft: | |
| uses: ./.github/workflows/release-drafter.yml | |
| with: | |
| event_name: ${{ github.event_name }} | |
| pr_draft: ${{ github.event.pull_request.draft == true }} |