feat: Add SIG specific badges for e2e failures against merged PRs #192
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
name: ci-health-tests | |
on: | |
pull_request: | |
paths: | |
- 'cmd/**' | |
- 'e2e/**' | |
- 'pkg/**' | |
- 'go.*' | |
- 'deps.bzl' | |
- 'BUILD.bazel' | |
- 'WORKSPACE' | |
- '.bazel*' | |
- '.github/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: quay.io/kubevirtci/bootstrap:v20230105-1dbefc0 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: run tests | |
env: | |
GITHUB_TOKEN: ${{ secrets.KUBEVIRT_BOT_TOKEN }} | |
run: | | |
echo -n $GITHUB_TOKEN > $(pwd)/token | |
bazelisk test ... --action_env GITHUB_TOKEN_PATH=$(pwd)/token |