Skip to content

[minor] Gitops updates to support junitreporter + timeouts in FVT #1030

[minor] Gitops updates to support junitreporter + timeouts in FVT

[minor] Gitops updates to support junitreporter + timeouts in FVT #1030

Workflow file for this run

name: Verify CLI Image
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Fail if local Ansible collection is present in PR to master
run: |
if [[ -e $GITHUB_WORKSPACE/image/cli/install/ibm-mas_devops.tar.gz ]]; then
echo "Found a local Ansible collection($GITHUB_WORKSPACE/image/cli/install/ibm-mas_devops.tar.gz) in this PR, Local ansible collection is not allowed in master branch. Failing build."
exit 1
fi