[minor] Tekton updates for Group Sync Operator & IBM RBAC for gitops #1573
Workflow file for this run
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: Verify CLI Image | |
on: | |
pull_request: | |
branches: [ "master" ] | |
# Ensure only one build at a time for any branch, cancelling any in-progress builds | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: '! github.event.pull_request.draft' | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Fail if local build of Ansible collection or Python package are present in a PR to master branch | |
run: | | |
RC=0 | |
if [[ -e $GITHUB_WORKSPACE/image/cli/install/ibm-mas_devops.tar.gz ]]; then | |
echo "Found local Ansible collection($GITHUB_WORKSPACE/image/cli/install/ibm-mas_devops.tar.gz) in this PR, Local collection is not allowed in the master branch." | |
RC=1 | |
fi | |
if [[ -e $GITHUB_WORKSPACE/image/cli/install/mas_devops.tar.gz ]]; then | |
echo "Found local Python package ($GITHUB_WORKSPACE/image/cli/install/mas_devops.tar.gz) in this PR, Local package is not allowed in the master branch." | |
RC=1 | |
fi | |
exit $RC |