Fix workload ocp4_workload_openshift_data_foundation - add support for 4.19, 4.20 #13413
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: LFS check | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| jobs: | |
| lfs-warning: | |
| name: Check size of files in commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get Repo Code | |
| id: get_repo_code | |
| uses: actions/checkout@v2 | |
| - name: Run lfs-warning | |
| uses: rhpds/lfs-warning@v3.2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| filesizelimit: '400000' # ~400KB | |
| message: >- | |
| Please store those files outside of git and get them in the code, | |
| for example using the `get_url` ansible module or simply `curl`. |