Remove false positive for Moq1200 when using parameterized lambda #248
Workflow file for this run
This file contains 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
# This workflow will approve pull requests from dependabot | |
name: Auto approve PRs by dependabot | |
on: [pull_request_target] | |
jobs: | |
autoapprove: | |
name: Auto-Approve a PR by dependabot | |
runs-on: ubuntu-latest | |
steps: | |
- name: Auto approve | |
uses: cognitedata/[email protected] | |
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' | |
with: | |
github-token: ${{ secrets.GH_ACTIONS_PR_WRITE }} |