-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from hitobito/feature/swb-4-create-wagon
Create SBW Wagon
- Loading branch information
Showing
53 changed files
with
1,884 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: 'Lint and test' | ||
|
||
on: | ||
# The nightly obuild allows us to notice if changes to the core | ||
# break the wagon. | ||
schedule: | ||
- cron: '38 3 * * *' | ||
push: | ||
paths-ignore: | ||
- 'doc/**' | ||
- '**.md' | ||
pull_request: | ||
paths-ignore: | ||
- 'doc/**' | ||
- '**.md' | ||
workflow_dispatch: # Allow triggering manually | ||
inputs: | ||
core_ref: | ||
description: Use a specific version of the core for the workflow run. Defaults to master. | ||
type: string | ||
default: 'master' | ||
jobs: | ||
wagon_tests: | ||
uses: hitobito/hitobito/.github/workflows/wagon-tests.yml@master | ||
with: | ||
wagon_repository: ${{ github.event.repository.name }} | ||
core_ref: ${{ inputs.core_ref }} | ||
secrets: | ||
HEARTBEAT_URL: ${{ secrets.HEARTBEAT_URL }} | ||
HEARTBEAT_TOKEN: ${{ secrets.HEARTBEAT_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.bundle/ | ||
log/*.log | ||
tmp/ | ||
pkg/ | ||
doc/rdoc | ||
db/*.sqlite3 | ||
zeus.json | ||
.sass-cache | ||
.project | ||
.envrc | ||
*.iml | ||
.generators | ||
.idea | ||
.rakeTasks | ||
|
||
# ignore Gemfile.lock for wagons | ||
Gemfile.lock | ||
|
||
# reports | ||
spec/coverage | ||
spec/reports | ||
brakeman-output.tabs | ||
rubocop-results.xml | ||
coverage | ||
|
||
.tool-versions | ||
.pry_history | ||
.envrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
inherit_from: | ||
- ../hitobito/.rubocop.yml | ||
|
||
AllCops: | ||
Exclude: | ||
- Rakefile | ||
- Gemfile | ||
- db/**/* | ||
- config/**/* | ||
- bin/**/* | ||
- tmp/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.2.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Hitobito Swb is created by the following people: | ||
|
||
Code: | ||
Pascal Zumkehr, Puzzle ITC | ||
Andreas Maierhofer, Puzzle ITC | ||
Matthias Viehweger, Puzzle ITC | ||
Nils Rauch, Puzzle ITC | ||
Niklas Jäggi, Puzzle ITC | ||
Daniel Illi, Puzzle ITC | ||
|
||
Design & Style: | ||
Roland Studer | ||
Pierre Fritsch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
HitobitoSwb - Hitobito organization structure and specific features. | ||
Copyright (C) 2025 Swiss Badminton | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as | ||
published by the Free Software Foundation, either version 3 of the | ||
License, or (at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. |
Oops, something went wrong.