badges: Reduce levels for both merge queue and retests to merge badges #189
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 |