Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [PR-127](https://github.com/itk-dev/devops_itkdev-docker/pull/127)
- Added check for images being pullable.
- [PR-121](https://github.com/itk-dev/devops_itkdev-docker/pull/121))
- Changed COMPOSE_USER to runner.
- [PR-108](https://github.com/itk-dev/devops_itkdev-docker/pull/108)
Expand Down
10 changes: 9 additions & 1 deletion docs/github-actions-templates.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- DO NOT EDIT THIS FILE!

It was automatically created at 2025-06-12T14:50:42+02:00
It was automatically created at 2026-01-06T10:19:40+01:00
by task/scripts/github-documentation-update
based on /app/task/scripts/../templates/github-actions-templates.md
-->
Expand Down Expand Up @@ -197,6 +197,14 @@ Validates styles files.

---

[github/workflows/images.yaml](github/workflows/images.yaml)

### Images

Checks that all docker images can be pulled.

---

[github/workflows/markdown.yaml](github/workflows/markdown.yaml)

### Markdown
Expand Down
22 changes: 22 additions & 0 deletions github/workflows/images.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Do not edit this file! Make a pull request on changing
# github/workflows/images.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.

### ### Images
###
### Checks that all docker images can be pulled.

name: Images

on:
pull_request:
Comment on lines +11 to +12
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


jobs:
images:
runs-on: ubuntu-latest
name: Check that docker images can be pulled
steps:
- uses: actions/checkout@v5
- name: Check that docker images can be pulled
run: |
COMPOSE_PROFILES='*' docker compose pull
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉 (for remembering to include all profiles)

1 change: 1 addition & 0 deletions templates/drupal-10/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/drupal-11/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/drupal-7/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/drupal-8/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/drupal-9/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/drupal-module/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/symfony-3/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/symfony-4/.github/workflows/images.yaml
1 change: 1 addition & 0 deletions templates/symfony-6/.github/workflows/images.yaml