Skip to content
Merged
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
22 changes: 18 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,22 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: phplint, laravel/pint
- name: Check syntax
run: phplint .
extensions: bcmath, ctype, fileinfo, json, mbstring, openssl, pdo, tokenizer, xml, zip, gd
coverage: none
- name: Prepare the environment
run: cp .env.ci .env
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Setup composer cache
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Check code style
run: pint --test
run: vendor/bin/pint --test
41 changes: 41 additions & 0 deletions legacy/config/config.orgs.php
Original file line number Diff line number Diff line change
Expand Up @@ -604,4 +604,45 @@
'min-description-length' => 10,
],
],
'hs-harz' => [
'gremien' => [
'Zentral' => [
'Studierendenrat (StuRa)',
'Vorstand',
],
'Referate' => [
'Referat Finanzen',
'Referat Veranstaltungen',
'Referat Initiativen und Hochschulsport',
'Referat Studentische Angelegenheiten und Internationales',
'Referat Kommunikation mit dem Standort Halberstadt',
'Referat Marketing',
'Referat Digitales',
],
],
'rechtsgrundlagen' => [
'stura' => [
'label' => 'StuRa-Beschluss',
'label-additional' => 'Beschluss-Nr',
'placeholder' => '',
'hint-text' => 'Für FSR-Titel ist zusätzlich zum StuRa Beschluss zusätzlich ein FSR Beschluss notwendig.',
],
'andere' => [
'label' => 'Andere Rechtsgrundlage',
'label-additional' => 'Andere Rechtsgrundlage angeben',
'hint-text' => '',
'placeholder' => '',
],
],
'mailinglists' => [],
'impressum-url' => 'https://open-administration.de/index.php/kontakt-und-impressum/',
'datenschutz-url' => 'https://open-administration.de/index.php/datenschutz/',
'issues-url' => '',
'help-url' => 'mailto:service@open-administration.de',
'mail-domain' => 'hs-harz.de',
'finanzen-mail' => 'lukas.staab@open-administration.de',
'projekt-form' => [
'min-description-length' => 0,
],
],
];
Loading