Compare commits

..

16 commits

Author SHA1 Message Date
afdb5f0647 feat: set users locale 2025-08-14 16:23:09 +02:00
a05e8641fe feat: memberslist as landing page 2025-08-14 16:23:09 +02:00
01dc20af6e feat: add translation 2025-08-14 16:23:09 +02:00
96defae986 feat: add overrides for sign in page 2025-08-14 16:23:09 +02:00
c7bdd5501d
Dont run renovate on every push 2025-08-14 14:24:02 +02:00
Renovate Bot
a144f13af3 chore(deps): update renovate/renovate docker tag to v41.72
Some checks are pending
continuous-integration/drone/push Build is pending
2025-08-14 13:38:27 +02:00
Renovate Bot
f55cf5618a chore(deps): update ghcr.io/sebadob/rauthy docker tag to v0.32.0
Some checks are pending
continuous-integration/drone/push Build is pending
2025-08-14 13:36:59 +02:00
5d99607c7e Merge pull request 'Added PR and issue templates closes #129' (#139) from feature/129_PR_Template into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #139
Reviewed-by: simon <s.thiessen@local-it.org>
2025-08-14 12:55:01 +02:00
d2fefbe00d Merge branch 'main' into feature/129_PR_Template
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-14 12:41:32 +02:00
947f4bac46 Merge pull request 'Only create renovate PRs on the first 3 days of a month' (#134) from push-swtusmqnzplt into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #134
2025-08-14 10:44:39 +02:00
23cd6681b9 Merge pull request 'chore(deps): update renovate/renovate docker tag to v41.70' (#136) from renovate/renovate-renovate-41.x into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #136
2025-08-14 10:39:28 +02:00
8bcfe5f129 Merge pull request 'add just clean task' (#131) from push-nnuxvommosnv into main
Some checks are pending
continuous-integration/drone/push Build is running
Reviewed-on: #131
2025-08-14 10:37:30 +02:00
Renovate Bot
027756f8fa chore(deps): update renovate/renovate docker tag to v41.70
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-14 00:22:44 +00:00
6874fadbb9 chore: added PR and issue templates
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-11 14:05:48 +02:00
cf3836e6f1
Only create renovate PRs on the first 3 days of a month
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-04 15:26:34 +02:00
c7e740762e
add just clean task
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-04 13:40:18 +02:00
7 changed files with 104 additions and 3 deletions

View file

@ -109,7 +109,6 @@ trigger:
event:
- cron
- custom
- push
branch:
- main
@ -118,7 +117,7 @@ environment:
steps:
- name: renovate
image: renovate/renovate:41.51
image: renovate/renovate:41.72
environment:
RENOVATE_CONFIG_FILE: "renovate_backend_config.js"
RENOVATE_TOKEN:

View file

@ -0,0 +1,33 @@
---
name: 'Bug Tempate'
about: 'This template is for bugs!'
title: '[BUG]: '
ref: 'main'
labels:
- bug
---
<!--- Provide a general summary of the issue in the Title above -->
## Expected Behavior
<!--- Tell us what should happen -->
## Current Behavior
<!--- Tell us what happens instead of the expected behavior -->
## Possible Solution
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
## Steps to Reproduce
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
2.
3.
4.
## Detailed Description
<!--- Provide a detailed description of the change or addition you are proposing -->
## Possible Implementation
<!--- Not obligatory, but suggest an idea for implementing addition or change -->

View file

@ -0,0 +1,18 @@
---
name: 'Feature Template'
about: 'This template is for new features!'
title: '[FEATURE]: '
ref: 'main'
labels:
- feature
---
## Description
<!--- Describe the goal and desired output --->
<!--- Add the estimated effort as label --->
## Acceptance criteria
- [ ] AC 1
- [ ] AC 2
## External or internal Dependencies
<!-- List any dependencies --->

View file

@ -0,0 +1,44 @@
---
name: 'New Pull-Request'
about: 'This is the template for a new Pull Request'
title: 'WIP: '
ref: 'main'
labels:
---
## Description of the implemented changes
The changes were:
- [ ] Bugfixing
- [ ] New Feature
- [ ] Breaking Change
- [ ] Refactoring
<!--- Describe the goal of the PR in a few words -->
## What has been changed?
<!--- List the things you changed -->
## Definition of Done
### Code Quality
- [ ] No new technical depths
- [ ] Linting passed
- [ ] Documentation is added were needed
### Accessibility
- [ ] New elements are properly defined with html-tags
- [ ] Colour contrast follows WCAG criteria
- [ ] Aria labels are added when needed
- [ ] Everything is accessible by keyboard
- [ ] Tab-Order is comprehensible
- [ ] All interactive elements have a visible focus
### Testing
- [ ] Tests for new code are written
- [ ] All tests pass
- [ ] axe-core dev tools show no critical or major issues
## Additional Notes
<!--- Add any additional information for the reviewers here -->

View file

@ -78,3 +78,9 @@ regen-migrations migration_name commit_hash='':
# Generate a fresh migration
mix ash.codegen --name "{{migration_name}}"
# Remove all build artifacts
clean:
mix clean
rm -rf .elixir_ls
rm -rf _build

View file

@ -30,7 +30,7 @@ services:
rauthy:
container_name: rauthy-dev
image: ghcr.io/sebadob/rauthy:0.31.3
image: ghcr.io/sebadob/rauthy:0.32.0
environment:
- LOCAL_TEST=true
- SMTP_URL=mailcrab

View file

@ -1,6 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"schedule": ["* * 3 * *"],
"packageRules": [
{
"groupName": "Mix dependencies",