Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .azuredevops/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Change

***Feel free to remove this sample text***
>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.

## Type of Change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update (Wiki)

## Checklist

- [ ] I'm sure there are no other open Pull Requests for the same update/change
- [ ] My corresponding Pipelines / Checks run clean and green without any errors or warnings
- [ ] My code follows the style guidelines of this project
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation (readme)
- [ ] I did format my code
12 changes: 12 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# See for instructions on this file <https://help.github.com/articles/about-codeowners/>

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.

* @segraef

.azuredevops/** @segraef
.github/** @segraef
.pipelines/** @segraef
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: "Bug report \U0001F41B"
about: Report errors or unexpected behaviour
title: 'Bug Report'
labels: bug
assignees: ''
---

<!-- Please search existing issues to avoid creating duplicates. -->

## Description

Please describe your bug as detailed as possible.

### Steps to reproduce

1.
2.

### Screenshots
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: "Feature request \U0001F680"
about: Suggest an idea for this project
title: 'Feature Request'
labels: feature
assignees: ''
---

<!-- Please search existing issues to avoid creating duplicates. -->

## Description

Please describe your request.
25 changes: 25 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change

***Feel free to remove this sample text***
>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.

## Type of Change

Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update (Wiki)

## Checklist

- [ ] I'm sure there are no other open Pull Requests for the same update/change
- [ ] My corresponding pipelines / checks run clean and green without any errors or warnings
- [ ] My code follows the style guidelines of this project
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation (readme)
- [ ] I did format my code
22 changes: 22 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Linter

on: [pull_request]

jobs:
build:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Lint Code Base
# uses: github/super-linter:latest
uses: docker://ghcr.io/github/super-linter:slim-v4
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN: false
VALIDATE_ARM: false
VALIDATE_JSON: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25 changes: 25 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Sample Workflow"
on:
workflow_dispatch:
inputs:
name:
description: 'Person to greet'
required: true
default: 'You'
home:
description: 'location'
required: false
default: 'The Universe'

jobs:
job:
name: "Job"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Hello
shell: pwsh
run: |
echo "Hello ${{ github.event.inputs.name }}!"
echo "- in ${{ github.event.inputs.home }}!"
18 changes: 18 additions & 0 deletions .pipelines/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: SuperLinter

trigger:
- main

pool:
vmImage: ubuntu-latest

jobs:

- job: lint
displayName: Linter
steps:
- script: |
# docker pull github/super-linter:latest
docker pull docker://ghcr.io/github/super-linter:slim-v4
docker run -e RUN_LOCAL=true -v $(System.DefaultWorkingDirectory):/tmp/lint github/super-linter
displayName: 'Lint Code Base'
31 changes: 31 additions & 0 deletions .pipelines/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Sample Pipeline"

trigger:
- main

pool:
vmImage: ubuntu-latest

jobs:

- job: Job
displayName: "Job"
steps:

- checkout: self
fetchDepth: 0
persistCredentials: true

- task: Bash@3
displayName: "Bash"
inputs:
targetType: "inline"
script: |
echo Bash

- task: PowerShell@2
displayName: "PowerShell"
inputs:
targetType: "inline"
script: |
echo PowerShell
Loading