feat(dashboard): copy Deep Research Prompt + evaluation to clipboard #2
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: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| dependency-review: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Dependency Review | |
| # TODO: remove continue-on-error once the Dependency graph is enabled in | |
| # Settings > Security & Analysis (see #343). Until then, this is a temporary | |
| # workaround to unblock PRs — note that fail-on-severity: high is still | |
| # configured but will not block merges while continue-on-error is true. | |
| continue-on-error: true | |
| uses: actions/dependency-review-action@v4 | |
| with: | |
| fail-on-severity: high | |
| comment-summary-in-pr: always |