Add support for excluding specific containers in log analysis across multiple healthcheck runbooks #572
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: Score CodeCollection | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "codebundles/**" | |
| - ".github/workflows/score.yaml" | |
| - "!src/VERSION" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| score-codebundles: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set Git user | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - uses: runwhen-contrib/github-actions/codecollection-score@main | |
| with: | |
| directory: . | |
| apply_suggestions: true | |
| only_changed: true | |
| env: | |
| GH_TOKEN: ${{ github.token }} |