Skip to content

Commit

Permalink
Initial tables and credential setup
Browse files Browse the repository at this point in the history
  • Loading branch information
e-gineer committed Aug 15, 2021
1 parent f05cfd4 commit b574cfd
Show file tree
Hide file tree
Showing 44 changed files with 10,485 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**Steampipe version (`steampipe -v`)**
Example: v0.3.0

**Plugin version (`steampipe plugin list`)**
Example: v0.5.0

**To reproduce**
Steps to reproduce the behavior (please include relevant code and/or commands).

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the problem here.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Questions
url: https://github.com/turbot/steampipe/discussions
about: Please ask any questions through the Steampipe Discussions forum.
- name: Steampipe CLI Bug Reports and Feature Requests
url: https://github.com/turbot/steampipe/issues/new/choose
about: Steampipe CLI has its own codebase. Bug reports and feature requests for those pieces of functionality should be directed to that repository.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request---new-table.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Feature request - New table
about: Suggest a new table for this project
title: Add table tfe_<resource>
labels: enhancement, new table
assignees: ""
---

**References**
Add any related links that will help us understand the resource, including vendor documentation, related GitHub issues, and Go SDK documentation.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

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

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Integration test logs
<details>
<summary>Logs</summary>

```
Add passing integration test logs here
```
</details>

# Example query results
<details>
<summary>Results</summary>

```
Add example SQL query results here (please include the input queries as well)
```
</details>
1 change: 1 addition & 0 deletions .github/actions/semver-tags/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
15 changes: 15 additions & 0 deletions .github/actions/semver-tags/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Semver Tags'
description: 'Get appropriate Semver Tags on OVI images in Google Cloud'
inputs:
image-to-tag:
description: 'The image to tag (ex: us-docker.pkg.dev/steampipe/plugin/turbot/aws:my-tag-or-digest)'
required: true
image-version:
description: 'The image version, this should be an EXACT version (ex: 1.2.3)'
required: true
# outputs:
# stdout: # id of output
# description: ''
runs:
using: 'node12'
main: 'dist/index.js'
1 change: 1 addition & 0 deletions .github/actions/semver-tags/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ncc build index.js
Loading

0 comments on commit b574cfd

Please sign in to comment.