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
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: '"[DATE] [BUG]"'
labels: ''
assignees: ''

---

** Expected Behavior**
Describe what should have happened.

** Actual Behavior**
Describe what actually happened.

**Steps To Reproduce the Problem**
Describe in as much detail as possible how to reproduce the problem.

Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Version**
Indicate the relevant versions of components. This may include the package version, operating system version, or other components relevant to the project.

**Additional Context**
Add any other context about the problem here, including additional logs or debugging information if appropriate.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature request
about: Suggest an idea for this project
title: '"[DATE]: [FEATURE NAME]"'
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is and why it is important. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen / how you might solve this problem.

**Describe alternatives you've considered**
A clear and concise description of any existing workarounds, alternative solutions or features you've considered, and why you think your solution is preferable.


**Additional context**
Add any other context or screenshots about the feature request here.
57 changes: 57 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# CodeQL configuration for the dxi-terraform-provider repo
name: "CodeQL"

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ develop ]

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'go' ]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: actions/setup-go@v2
with:
go-version: '^1.17.7'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
queries: +security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
32 changes: 32 additions & 0 deletions ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: '"[DATE] [BUG]"'
labels: ''
assignees: ''

---

** Expected Behavior**
Describe what should have happened.

** Actual Behavior**
Describe what actually happened.

**Steps To Reproduce the Problem**
Describe in as much detail as possible how to reproduce the problem.

Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Version**
Indicate the relevant versions of components. This may include the package version, operating system version, or other components relevant to the project.

**Additional Context**
Add any other context about the problem here, including additional logs or debugging information if appropriate.
21 changes: 21 additions & 0 deletions ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature request
about: Suggest an idea for this project
title: '"[DATE]: [FEATURE NAME]"'
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is and why it is important. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen / how you might solve this problem.

**Describe alternatives you've considered**
A clear and concise description of any existing workarounds, alternative solutions or features you've considered, and why you think your solution is preferable.


**Additional context**
Add any other context or screenshots about the feature request here.
57 changes: 57 additions & 0 deletions workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# CodeQL configuration for the dxi-terraform-provider repo
name: "CodeQL"

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ develop ]

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'go' ]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- uses: actions/setup-go@v2
with:
go-version: '^1.17.7'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
queries: +security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1