Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4d0fdd8
Merge branch 'develop'
rimi-itk Jun 23, 2025
ac52fa3
Merge branch 'develop'
rimi-itk Jul 1, 2025
b2b3339
Release 4.11.0
rimi-itk Jul 1, 2025
ec6a2c6
4850: Changed project name
rimi-itk Jul 1, 2025
27d7031
4850: Updated docker compose setup
rimi-itk Jul 1, 2025
f1c76e2
4850: Linted YAML. Cleaned up.
rimi-itk Jul 1, 2025
f8d619c
Aligned composer.json with https://github.com/drupal-composer/drupal-…
rimi-itk Jul 2, 2025
3de87eb
Restored drush folder
rimi-itk Jul 2, 2025
f07e154
Merge pull request #528 from itk-dev/feature/drupal-composer-cleanup
rimi-itk Jul 3, 2025
1ade8a4
Merge pull request #526 from itk-dev/feature/4850-docker-compose-setup
rimi-itk Jul 3, 2025
c0dbcc4
4897: Added Site Status Message module
rimi-itk Jul 3, 2025
5bbd2c7
4897: Applied patch
rimi-itk Jul 3, 2025
206fb8d
Merge branch 'feature/site_status_message' into develop
rimi-itk Jul 3, 2025
71b16f3
Updated contrib and custom modules, and removed unused module
martinyde Jul 3, 2025
c1e7e48
Updated contrib modules
martinyde Jul 4, 2025
f52fe7c
Updated contrib modules
martinyde Jul 4, 2025
3b3f91d
Updated config
martinyde Jul 4, 2025
f7fb230
Merge branch 'release/4.11.0' into feature/d11-prepare
martinyde Jul 4, 2025
725c8c3
Removed strict fromm composer validate to allow commit-refs to be used
martinyde Jul 7, 2025
b71ec58
Updated .info.ml files
martinyde Jul 7, 2025
c075380
Updated removed js dependencies
martinyde Jul 7, 2025
429fd8a
Updated changelog
martinyde Jul 7, 2025
6376599
Moved config
martinyde Jul 7, 2025
79ec877
Removed drupal/pluginformalter
martinyde Jul 7, 2025
d6586b8
Updated composer.lock
martinyde Jul 7, 2025
c0e359d
Added custom toolbar visibility logic
rimi-itk Jul 7, 2025
2602796
Merge pull request #531 from itk-dev/feature/toolbar-cleanup
rimi-itk Jul 7, 2025
64dd0ee
Merge pull request #530 from itk-dev/feature/d11-prepare
rimi-itk Jul 7, 2025
0301515
Attempt to get the deadline date for the hearing instead of startdate
yepzdk Jul 9, 2025
2a0fb00
Update node--hearing--teaser.html.twig
yepzdk Jul 10, 2025
0643ab4
Apply coding styles
yepzdk Jul 10, 2025
3ecdb2e
Update CHANGELOG.md
yepzdk Jul 10, 2025
267dcd9
Update HearingHelper.php
yepzdk Jul 10, 2025
fe29268
Merge pull request #533 from itk-dev/532-på-høringslisten-vises-ikke-…
rimi-itk Jul 10, 2025
bbf97ab
Merge pull request #534 from itk-dev/hotfix/4.10.3
rimi-itk Aug 13, 2025
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
4 changes: 2 additions & 2 deletions .docker/pretix/etc/pretix.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://docs.pretix.eu/en/latest/admin/installation/docker_smallscale.html#config-file
[pretix]
instance_name=pretix.hoeringsportal.local.itkdev.dk
url=http://pretix.hoeringsportal.local.itkdev.dk
instance_name=pretix.deltag.local.itkdev.dk
url=http://pretix.deltag.local.itkdev.dk
currency=DKK
datadir=/data
trust_x_forwarded_for=on
Expand Down
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
COMPOSE_PROJECT_NAME=hoeringsportal
COMPOSE_DOMAIN=hoeringsportal.local.itkdev.dk
COMPOSE_PROJECT_NAME=deltag
COMPOSE_DOMAIN=deltag.local.itkdev.dk
ITKDEV_TEMPLATE=drupal-10
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
tags:
- '*.*.*'
- "*.*.*"

name: Create Github Release

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

### ### Changelog
###
### Checks that changelog has been updated

name: Changelog

on:
pull_request:

jobs:
changelog:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: Git fetch
run: git fetch

- name: Check that changelog has been updated.
run: git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md && exit 1 || exit 0
71 changes: 71 additions & 0 deletions .github/workflows/composer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Do not edit this file! Make a pull request on changing
# github/workflows/composer.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.

### ### Composer
###
### Validates composer.json and checks that it's normalized.
###
### #### Assumptions
###
### 1. A docker compose service named `phpfpm` can be run and `composer` can be
### run inside the `phpfpm` service.
### 2. [ergebnis/composer-normalize](https://github.com/ergebnis/composer-normalize)
### is a dev requirement in `composer.json`:
###
### ``` shell
### docker compose run --rm phpfpm composer require --dev ergebnis/composer-normalize
### ```
###
### Normalize `composer.json` by running
###
### ``` shell
### docker compose run --rm phpfpm composer normalize
### ```

name: Composer

env:
COMPOSE_USER: root

on:
pull_request:
push:
branches:
- main
- develop

jobs:
composer-validate:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- run: |
docker network create frontend
- run: |
docker compose run --rm phpfpm composer validate

composer-normalized:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- run: |
docker network create frontend
- run: |
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm composer normalize --dry-run

composer-audit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- run: |
docker network create frontend
- run: |
docker compose run --rm phpfpm composer audit --locked
36 changes: 36 additions & 0 deletions .github/workflows/javascript.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Do not edit this file! Make a pull request on changing
# github/workflows/drupal/javascript.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.

### ### Drupal JavaScript (and TypeScript)
###
### Validates JavaScript files.
###
### #### Assumptions
###
### 1. A docker compose service named `prettier` for running
### [Prettier](https://prettier.io/) exists.

name: JavaScript

on:
pull_request:
push:
branches:
- main
- develop

jobs:
javascript-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4

- run: |
docker network create frontend

- run: |
docker compose run --rm prettier 'web/themes/custom/**/js/**/*.js' --check
43 changes: 43 additions & 0 deletions .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Do not edit this file! Make a pull request on changing
# github/workflows/markdown.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.

### ### Markdown
###
### Lints Markdown files (`**/*.md`) in the project.
###
### [markdownlint-cli configuration
### files](https://github.com/igorshubovych/markdownlint-cli?tab=readme-ov-file#configuration),
### `.markdownlint.jsonc` and `.markdownlintignore`, control what is actually
### linted and how.
###
### #### Assumptions
###
### 1. A docker compose service named `markdownlint` for running `markdownlint`
### (from
### [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli))
### exists.

name: Markdown

on:
pull_request:
push:
branches:
- main
- develop

jobs:
markdown-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4

- run: |
docker network create frontend

- run: |
docker compose run --rm markdownlint markdownlint '**/*.md'
55 changes: 55 additions & 0 deletions .github/workflows/php.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Do not edit this file! Make a pull request on changing
# github/workflows/drupal/php.yaml in
# https://github.com/itk-dev/devops_itkdev-docker if need be.

### ### Drupal PHP
###
### Checks that PHP code adheres to the [Drupal coding
### standards](https://www.drupal.org/docs/develop/standards).
###
### #### Assumptions
###
### 1. A docker compose service named `phpfpm` can be run and `composer` can be
### run inside the `phpfpm` service.
### 2. [drupal/coder](https://www.drupal.org/project/coder) is a dev requirement
### in `composer.json`:
###
### ``` shell
### docker compose run --rm phpfpm composer require --dev drupal/coder
### ```
###
### Clean up and check code by running
###
### ``` shell
### docker compose run --rm phpfpm vendor/bin/phpcbf
### docker compose run --rm phpfpm vendor/bin/phpcs
### ```
###
### > [!NOTE]
### > The template adds `.phpcs.xml.dist` as [a configuration file for
### > PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#using-a-default-configuration-file)
### > and this makes it possible to override the actual configuration used in a
### > project by adding a more important configuration file, e.g. `.phpcs.xml`.

name: PHP

env:
COMPOSE_USER: root

on:
pull_request:
push:
branches:
- main
- develop

jobs:
coding-standards:
name: PHP - Check Coding Standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
docker network create frontend
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm vendor/bin/phpcs
Loading
Loading