Skip to content

Commit 0103eed

Browse files
committed
6267: Added GitHub Action for checking images can be pulled
1 parent 115c1b4 commit 0103eed

File tree

11 files changed

+40
-1
lines changed

11 files changed

+40
-1
lines changed

docs/github-actions-templates.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- DO NOT EDIT THIS FILE!
22
3-
It was automatically created at 2025-06-12T14:50:42+02:00
3+
It was automatically created at 2026-01-06T10:19:40+01:00
44
by task/scripts/github-documentation-update
55
based on /app/task/scripts/../templates/github-actions-templates.md
66
-->
@@ -197,6 +197,14 @@ Validates styles files.
197197

198198
---
199199

200+
[github/workflows/images.yaml](github/workflows/images.yaml)
201+
202+
### Images
203+
204+
Checks that all docker images can be pulled.
205+
206+
---
207+
200208
[github/workflows/markdown.yaml](github/workflows/markdown.yaml)
201209

202210
### Markdown

github/workflows/images.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Do not edit this file! Make a pull request on changing
2+
# github/workflows/images.yaml in
3+
# https://github.com/itk-dev/devops_itkdev-docker if need be.
4+
5+
### ### Images
6+
###
7+
### Checks that all docker images can be pulled.
8+
9+
name: Images
10+
11+
on:
12+
pull_request:
13+
14+
jobs:
15+
images:
16+
runs-on: ubuntu-latest
17+
name: Check that docker images can be pulled
18+
steps:
19+
- uses: actions/checkout@v5
20+
- name: Check that docker images can be pulled
21+
run: |
22+
COMPOSE_PROFILES='*' docker compose pull
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../github/workflows/images.yaml

0 commit comments

Comments
 (0)