Skip to content

Commit d59d7e2

Browse files
authored
Initial commit
0 parents  commit d59d7e2

31 files changed

+558
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Blank issue
3+
about: Blank template for general issue
4+
title: "[General] "
5+
labels: ''
6+
assignees: ocots
7+
8+
---
9+
10+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report to help us improve
4+
title: "[Bug] "
5+
labels: bug
6+
assignees: ocots
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Give if possible the code to reproduce the error:
15+
16+
```julia
17+
julia> f(x)=1
18+
f (generic function with 1 method)
19+
20+
julia> f()
21+
ERROR: MethodError: no method matching f()
22+
```
23+
24+
**Expected behavior**
25+
A clear and concise description of what you expected to happen.
26+
27+
**Screenshots**
28+
If applicable, add screenshots to help explain your problem.
29+
30+
**Additional context**
31+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: CTAppTemplate.jl package support
4+
url: https://github.com/control-toolbox/CTAppTemplate.jl/discussions
5+
about: Please ask and answer questions about CTAppTemplate.jl here.
6+
- name: Control-toolbox organisation support
7+
url: https://github.com/orgs/control-toolbox/discussions
8+
about: For more general questions about control-toolbox ecosystem it's here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: 'Developers '
3+
about: Suggest internal modifications
4+
title: "[Dev] "
5+
labels: internal dev
6+
assignees: ocots
7+
8+
---
9+
10+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Documentation suggestion
3+
about: Suggest improvements or additions to the documentation
4+
title: "[Doc] "
5+
labels: documentation
6+
assignees: ocots
7+
8+
---
9+
10+
**Please detail your suggestion.**
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Feature] "
5+
labels: enhancement
6+
assignees: ocots
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/codecov.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
informational: true
6+
patch:
7+
default:
8+
informational: true

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/AutoAssign.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Auto Assign
2+
on:
3+
issues:
4+
types: [opened, reopened]
5+
pull_request:
6+
types: [opened, reopened]
7+
jobs:
8+
call:
9+
uses: control-toolbox/CTActions/.github/workflows/auto-assign.yml@main
10+
with:
11+
assignees: ocots
12+
numOfAssignee: 1

.github/workflows/CI.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags: '*'
8+
pull_request:
9+
10+
jobs:
11+
call:
12+
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main

0 commit comments

Comments
 (0)