Skip to content

Commit 7995ab7

Browse files
authored
Initial commit
0 parents  commit 7995ab7

24 files changed

+644
-0
lines changed

.azuredevops/PULL_REQUEST_TEMPLATE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Change
2+
3+
***Feel free to remove this sample text***
4+
>Thank you for your contribution! Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
5+
6+
## Type of Change
7+
8+
Please delete options that are not relevant.
9+
10+
- [ ] Bug fix (non-breaking change which fixes an issue)
11+
- [ ] New feature (non-breaking change which adds functionality)
12+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
13+
- [ ] This change requires a documentation update (Wiki)
14+
15+
## Checklist
16+
17+
- [ ] I'm sure there are no other open Pull Requests for the same update/change.
18+
- [ ] My corresponding Pipelines / Checks run clean and green without any errors or warnings.
19+
- [ ] My code follows the style guidelines of this project.
20+
- [ ] I have commented my code, particularly in hard-to-understand areas.
21+
- [ ] I have made corresponding changes to the documentation (readme).
22+
- [ ] I did format my code.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Change for dev branch
2+
3+
>Please describe your change ***here***.
4+
5+
## Type of Change
6+
7+
Please delete options that are not relevant.
8+
9+
- [ ] Bug fix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] This change requires a documentation update (Wiki)
13+
14+
## Checklist
15+
16+
- [ ] I'm sure there are no other open Pull Requests for the same update/change.
17+
- [ ] My code follows the style guidelines of this project.
18+
- [ ] I have commented my code, particularly in hard-to-understand areas (if necessary).
19+
- [ ] I have made corresponding changes to the documentation (readme).
20+
- [ ] I did format my code.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Change
2+
3+
>Please describe your change ***here***.
4+
5+
## Type of Change
6+
7+
Please delete options that are not relevant.
8+
9+
- [ ] Bug fix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] This change requires a documentation update (Wiki)
13+
14+
## Checklist
15+
16+
- [ ] I agree with the `Terraform Speculative Plan` and its infrastructure changes (`add`, `remove` or `destroy`).
17+
- [ ] I'm sure there are no other open Pull Requests for the same update/change.
18+
- [ ] My code follows the style guidelines of this project.
19+
- [ ] I have commented my code, particularly in hard-to-understand areas (if necessary).
20+
- [ ] I have made corresponding changes to the documentation (readme).
21+
- [ ] I did format my code (`terraform fmt`).

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# .gitattributes snippet to force users to use same line endings for project.
2+
#
3+
# Handle line endings automatically for files detected as text
4+
# and leave all files detected as binary untouched.
5+
* text=auto
6+
7+
*.json text eol=lf

.github/CODEOWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# See for instructions on this file <https://help.github.com/articles/about-codeowners/>
2+
3+
# These owners will be the default owners for everything in
4+
# the repo. Unless a later match takes precedence,
5+
# @global-owner1 and @global-owner2 will be requested for
6+
# review when someone opens a pull request.
7+
8+
* @segraef
9+
10+
.azuredevops/** @segraef
11+
.github/** @segraef
12+
.pipelines/** @segraef

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "Bug report \U0001F41B"
3+
about: Report errors or unexpected behaviour
4+
title: 'Bug Report'
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
<!-- Please search existing issues to avoid creating duplicates. -->
10+
11+
## Description
12+
13+
Please describe your bug as detailed as possible.
14+
15+
### Steps to reproduce
16+
17+
1.
18+
2.
19+
20+
### Screenshots
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: "Feature request \U0001F680"
3+
about: Suggest an idea for this project
4+
title: 'Feature Request'
5+
labels: feature
6+
assignees: ''
7+
---
8+
9+
<!-- Please search existing issues to avoid creating duplicates. -->
10+
11+
## Description
12+
13+
Please describe your request.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Change
2+
3+
***Feel free to remove this sample text***
4+
>Thank you for your contribution !
5+
Please include a summary of the change and which issue is fixed.
6+
Please also include relevant motivation and context.
7+
List any dependencies that are required for this change.
8+
9+
## Type of Change
10+
11+
Please delete options that are not relevant.
12+
13+
- [ ] Bug fix (non-breaking change which fixes an issue)
14+
- [ ] New feature (non-breaking change which adds functionality)
15+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
16+
- [ ] This change requires a documentation update (Wiki)
17+
18+
## Checklist
19+
20+
- [ ] I'm sure there are no other open Pull Requests for the same update/change
21+
- [ ] My corresponding pipelines / checks run clean and green without any errors or warnings
22+
- [ ] My code follows the style guidelines of this project
23+
- [ ] I have commented my code, particularly in hard-to-understand areas
24+
- [ ] I have made corresponding changes to the documentation (readme)
25+
- [ ] I did format my code

.github/workflows/linter.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Linter
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
name: Linter
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout Code
11+
uses: actions/checkout@v2
12+
13+
- name: Lint Code Base
14+
uses: github/[email protected]
15+
env:
16+
VALIDATE_ALL_CODEBASE: false
17+
VALIDATE_MARKDOWN: false
18+
DEFAULT_BRANCH: main
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/workflow.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Sample Workflow"
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
name:
6+
description: 'Person to greet'
7+
required: true
8+
default: 'You'
9+
home:
10+
description: 'location'
11+
required: false
12+
default: 'The Universe'
13+
14+
jobs:
15+
job:
16+
name: "Job"
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
- name: Hello
22+
shell: pwsh
23+
run: |
24+
echo "Hello ${{ github.event.inputs.name }}!"
25+
echo "- in ${{ github.event.inputs.home }}!"

0 commit comments

Comments
 (0)