Bump actions/checkout from 6 to 7 #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: DevTrace PR Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| pull-requests: write | |
| checks: write | |
| jobs: | |
| score: | |
| runs-on: ubuntu-latest | |
| # Dependabot PRs cannot read DEVTRACE_TOKEN (restricted secrets), | |
| # and scoring the bot itself is not meaningful. | |
| if: github.actor != 'dependabot[bot]' | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v6 | |
| - uses: ./ | |
| with: | |
| token: ${{ secrets.DEVTRACE_TOKEN }} | |
| min-score: '0.7' | |
| trusted-orgs: 'thingzio' |