Add memory requests to all GitLab runners #215
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: Check Docker Image Versions | |
on: | |
pull_request: | |
jobs: | |
check-image: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-image-bump') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- run: git fetch --no-tags --prune --depth=1 origin main | |
- name: Check for modified directories that need an image bump | |
run: ./.github/scripts/check_docker_image_versions.sh |