Skip to content

Commit 42fe1dd

Browse files
Merge pull request #1 from techthoughts2/Enhancements
Enhancements
2 parents 08a6be9 + 03e2366 commit 42fe1dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1623
-494
lines changed

.github/CHANGELOG.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.h
7272

7373
[homepage]: https://www.contributor-covenant.org
7474

75-
For answers to common questions about this code of conduct, see [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq)
75+
For answers to common questions about this code of conduct, see [https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq)

.github/SECURITY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Security Policy
2+
3+
## Reporting a Vulnerability
4+
5+
<!--- Use this section to tell people how to report a vulnerability.
6+
7+
Tell them where to go, how often they can expect to get an update on a reported vulnerability, what to expect if the vulnerability is accepted or declined, etc. -->
8+
9+
If you discover a vulnerability in pwshCloudCommands, please follow the _following process_:
10+
11+
1. Open a generic bug issue advising you have discovered a vulnerability.
12+
- Avoid sharing specifics or details of the vulnerability in an open GitHub issue.
13+
2. A repo owner will reach out to you to establish a private form of communication.
14+
3. We will evaluate the vulnerability and, if necessary, release a fix or mitigating steps to address it. We will contact you to let you know the outcome, and will credit you in the report.
15+
16+
Please **do not disclose the vulnerability publicly** until a fix is released!
17+
18+
4. Once we have either a) published a fix, or b) declined to address the vulnerability for whatever reason, you are free to publicly disclose it.

.github/workflows/wf_Linux.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
66
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
77
# https://github.com/actions/upload-artifact#where-does-the-upload-go
8-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-branches
98
name: pwshCloudCommands-Linux
109
on:
1110
pull_request:
11+
paths-ignore:
12+
- '**.md'
13+
- 'docs/**'
1214
branches-ignore:
1315
- 'pipeline'
1416
push:
17+
paths-ignore:
18+
- '**.md'
19+
- 'docs/**'
1520
branches-ignore:
1621
- 'pipeline'
1722
jobs:
@@ -22,7 +27,7 @@ jobs:
2227
fail-fast: false
2328
steps:
2429
- name: Check out repository
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631
- name: Display the path
2732
shell: pwsh
2833
run: echo ${env:PATH}
@@ -40,14 +45,15 @@ jobs:
4045
shell: pwsh
4146
run: Invoke-Build -File .\src\pwshCloudCommands.build.ps1
4247
- name: Upload pester results
43-
uses: actions/upload-artifact@v2
48+
uses: actions/upload-artifact@v3
4449
with:
4550
name: pester-results
4651
path: ./src/Artifacts/testOutput
4752
if-no-files-found: warn
4853
- name: Upload zip module archive build
49-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v3
5055
with:
5156
name: zip-archive
5257
path: ./src/Archive
5358
if-no-files-found: warn
59+

.github/workflows/wf_MacOS.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
66
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
77
# https://github.com/actions/upload-artifact#where-does-the-upload-go
8-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-branches
98
name: pwshCloudCommands-MacOS
109
on:
1110
pull_request:
11+
paths-ignore:
12+
- '**.md'
13+
- 'docs/**'
1214
branches-ignore:
1315
- 'pipeline'
1416
push:
17+
paths-ignore:
18+
- '**.md'
19+
- 'docs/**'
1520
branches-ignore:
1621
- 'pipeline'
1722
jobs:
@@ -22,7 +27,7 @@ jobs:
2227
fail-fast: false
2328
steps:
2429
- name: Check out repository
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631
- name: Display the path
2732
shell: pwsh
2833
run: echo ${env:PATH}
@@ -40,14 +45,15 @@ jobs:
4045
shell: pwsh
4146
run: Invoke-Build -File .\src\pwshCloudCommands.build.ps1
4247
- name: Upload pester results
43-
uses: actions/upload-artifact@v2
48+
uses: actions/upload-artifact@v3
4449
with:
4550
name: pester-results
4651
path: ./src/Artifacts/testOutput
4752
if-no-files-found: warn
4853
- name: Upload zip module archive build
49-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v3
5055
with:
5156
name: zip-archive
5257
path: ./src/Archive
5358
if-no-files-found: warn
59+

.github/workflows/wf_Windows.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
66
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
77
# https://github.com/actions/upload-artifact#where-does-the-upload-go
8-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-branches
98
name: pwshCloudCommands-Windows
109
on:
1110
pull_request:
11+
paths-ignore:
12+
- '**.md'
13+
- 'docs/**'
1214
branches-ignore:
1315
- 'pipeline'
1416
push:
17+
paths-ignore:
18+
- '**.md'
19+
- 'docs/**'
1520
branches-ignore:
1621
- 'pipeline'
1722
jobs:
@@ -22,7 +27,7 @@ jobs:
2227
fail-fast: false
2328
steps:
2429
- name: Check out repository
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631
- name: Display the path
2732
shell: powershell
2833
run: echo ${env:PATH}
@@ -46,14 +51,15 @@ jobs:
4651
shell: powershell
4752
run: Invoke-Build -File .\src\pwshCloudCommands.build.ps1
4853
- name: Upload pester results
49-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v3
5055
with:
5156
name: pester-results
5257
path: .\src\Artifacts\testOutput
5358
if-no-files-found: warn
5459
- name: Upload zip module archive build
55-
uses: actions/upload-artifact@v2
60+
uses: actions/upload-artifact@v3
5661
with:
5762
name: zip-archive
5863
path: .\src\Archive
5964
if-no-files-found: warn
65+

.github/workflows/wf_Windows_Core.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@
55
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
66
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell
77
# https://github.com/actions/upload-artifact#where-does-the-upload-go
8-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-branches
98
name: pwshCloudCommands-Windows-pwsh
109
on:
1110
pull_request:
11+
paths-ignore:
12+
- '**.md'
13+
- 'docs/**'
1214
branches-ignore:
1315
- 'pipeline'
1416
push:
17+
paths-ignore:
18+
- '**.md'
19+
- 'docs/**'
1520
branches-ignore:
1621
- 'pipeline'
1722
jobs:
@@ -22,7 +27,7 @@ jobs:
2227
fail-fast: false
2328
steps:
2429
- name: Check out repository
25-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
2631
- name: Display the path
2732
shell: pwsh
2833
run: echo ${env:PATH}
@@ -40,14 +45,15 @@ jobs:
4045
shell: pwsh
4146
run: Invoke-Build -File .\src\pwshCloudCommands.build.ps1
4247
- name: Upload pester results
43-
uses: actions/upload-artifact@v2
48+
uses: actions/upload-artifact@v3
4449
with:
4550
name: pester-results
4651
path: .\src\Artifacts\testOutput
4752
if-no-files-found: warn
4853
- name: Upload zip module archive build
49-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v3
5055
with:
5156
name: zip-archive
5257
path: .\src\Archive
5358
if-no-files-found: warn
59+

.readthedocs.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://docs.readthedocs.io/en/stable/config-file/index.html
2+
3+
# .readthedocs.yaml
4+
# Read the Docs configuration file
5+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
6+
7+
# Required
8+
version: 2
9+
10+
build:
11+
os: ubuntu-22.04
12+
tools:
13+
python: "3.11"
14+
15+
mkdocs:
16+
configuration: mkdocs.yml
17+
18+
python:
19+
install:
20+
- requirements: docs/requirements.txt
21+
22+
# # Build PDF & ePub
23+
formats: all
24+
# - epub
25+
# - pdf

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
11
{
2+
"markdownlint.config": {
3+
"default": true,
4+
"MD007": {
5+
"indent": 4
6+
},
7+
"no-hard-tabs": false
8+
},
29
// When enabled, will trim trailing whitespace when you save a file.
310
"files.trimTrailingWhitespace": true,
411
// specifies the PowerShell coding style used in this project (https://github.com/PoshCode/PowerShellPracticeAndStyle/issues/81)
512
"powershell.codeFormatting.preset": "Stroustrup",
613
"cSpell.words": [
714
"ACCOUNTID",
15+
"autopagination",
816
"Backoff",
917
"bucketname",
1018
"buildspec",
19+
"Catesta",
1120
"childtemplates",
1221
"Clixml",
1322
"controlplane",
1423
"Datapoints",
1524
"datapull",
25+
"datetime",
1626
"Deduplication",
1727
"discoverability",
1828
"dotnetcore",
@@ -34,9 +44,11 @@
3444
"pwshcloudcommands",
3545
"Redrive",
3646
"sqseval",
47+
"testbucket",
3748
"xmldatafiles"
3849
],
3950
"cSpell.enableFiletypes": [
51+
"!yaml",
4052
"powershell"
4153
]
4254
}

0 commit comments

Comments
 (0)