Skip to content

Commit 2606b0b

Browse files
author
Gabriel Mainberger
committed
Initial commit
0 parents  commit 2606b0b

File tree

24 files changed

+290
-0
lines changed

24 files changed

+290
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: 🐜 Bug report
3+
about: Create a report to help us improve 🔧
4+
labels: bug
5+
---
6+
7+
<!-- Place a general description or your issue here. -->
8+
9+
## Steps to Reproduce the Problem
10+
<!-- Tell us how to reproduce your issue -->
11+
12+
1.
13+
1.
14+
1.
15+
16+
## Actual Behavior
17+
<!-- What did happen as a result of the above? -->
18+
19+
## Expected Behavior
20+
<!-- What is your expectation of the result? -->
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: 🚀 Feature request
3+
about: Suggest an idea for this project 💡
4+
labels: enhancement
5+
---
6+
7+
## Context
8+
<!--
9+
Please let us know what you are trying to do and how you would want to do it differently?
10+
Is it something you currently cannot do?
11+
Is this related to an issue/problem?
12+
-->
13+
14+
## Alternatives
15+
<!--
16+
Can you achieve the same result doing it in an alternative way?
17+
Is the alternative considerable?
18+
-->

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: ❓ Help and Support RocketChat Channel
4+
url: https://community.appuio.ch
5+
about: Please ask and answer questions here. 🏥

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!--
2+
Thank you for your pull request. Please provide a description above and
3+
review the checklist below.
4+
5+
Contributors guide: ./CONTRIBUTING.md
6+
-->
7+
8+
## Checklist
9+
<!--
10+
Remove items that do not apply. For completed items, change [ ] to [x].
11+
-->
12+
13+
- [ ] Keep pull requests small so they can be easily reviewed.
14+
- [ ] Update the documentation.
15+
- [ ] Update the ./CHANGELOG.md.
16+
- [ ] Link this PR to related issues.
17+
18+
<!--
19+
NOTE: these things are not required to open a PR and can be done afterwards,
20+
while the PR is open.
21+
-->

.github/workflows/test.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Pull Request
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
7+
jobs:
8+
linting:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
command:
13+
- lint_jsonnet
14+
- lint_yaml
15+
- docs
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Run ${{ matrix.command }}
19+
run: make ${{ matrix.command }}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_archive/
2+
_public/
3+
.cache/
4+
helmcharts/
5+
manifests/

.yamllint.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
extends: default
2+
3+
rules:
4+
# 80 chars should be enough, but don't fail if a line is longer
5+
line-length:
6+
max: 80
7+
level: warning

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
### Added
9+
10+
-
11+
12+
[Unreleased]: https://github.com/projectsyn/component-system-upgrade-controller/compare/v0.1.0...HEAD

CODE_OF_CONDUCT.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Code of Conduct
2+
3+
This code repository is part of Project Syn and the code of conduct at
4+
https://syn.tools/syn/code_of_conduct.html does apply.

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# How to contribute
2+
3+
This code repository is part of Project Syn and the contribution guide at
4+
https://syn.tools/syn/contribution_guide.html does apply.
5+
6+
Submit Pull Requests at https://github.com/projectsyn/component-system-upgrade-controller/pulls.

0 commit comments

Comments
 (0)