Skip to content

Commit 4ffc2a8

Browse files
Merge pull request #147 from StartAutomating/EZ-Improvement
EZOut 2.0
2 parents 1a1a7dd + 6640a3d commit 4ffc2a8

File tree

152 files changed

+4966
-6000
lines changed

Some content is hidden

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

152 files changed

+4966
-6000
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [StartAutomating]

.github/ISSUE_TEMPLATE/Bug.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Bug Report
2+
description: Report a Problem
3+
title: ""
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
What's broken? Let's get some info and get it fixed.
10+
- type: textarea
11+
id: Description
12+
attributes:
13+
label: Description
14+
description: Describe what's wrong.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: ReproSteps
19+
attributes:
20+
label: Reproducable Steps
21+
description: A script that would generate the error
22+
render: PowerShell
23+
validations:
24+
required: false
25+
- type: textarea
26+
id: Links
27+
attributes:
28+
label: Links
29+
description: Any related links.
30+
validations:
31+
required: false

.github/ISSUE_TEMPLATE/Example.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Add Example
2+
description: Add an Example
3+
title: "Example: "
4+
labels: ["HowTo"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Tell us a bit about your example
10+
- type: textarea
11+
id: Example
12+
attributes:
13+
label: Example
14+
description: The example content.
15+
render: PowerShell
16+
validations:
17+
required: false
18+
- type: textarea
19+
id: Links
20+
attributes:
21+
label: Links
22+
description: Any related links.
23+
validations:
24+
required: false
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Feature Request
2+
description: Request a Feature
3+
title: ""
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Tell us a little bit about what you'd like.
10+
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: New Command
2+
description: Request a new command
3+
title: ""
4+
labels: ["enhancement"]
5+
assignees:
6+
- startautomating
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Want this module to include a new command? Tell us more.
12+
- type: input
13+
id: Synopsis
14+
attributes:
15+
label: Synopsis
16+
description: A Synopsis of the command.
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: Description
21+
attributes:
22+
label: Description
23+
description: A description of the command
24+
validations:
25+
required: false
26+
- type: textarea
27+
id: Example
28+
attributes:
29+
label: Example
30+
description: An example of using the command
31+
render: PowerShell
32+
validations:
33+
required: false
34+
- type: textarea
35+
id: Links
36+
attributes:
37+
label: Links
38+
description: Any related links.
39+
validations:
40+
required: false
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
name: OnIssueChanged
33
on:
4-
issues:
54
workflow_dispatch:
65
jobs:
76
RunGitPub:

.github/workflows/TestReleaseAndPublish.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,15 +575,29 @@ jobs:
575575
steps:
576576
- name: Check out repository
577577
uses: actions/checkout@v2
578+
- name: Setup GO
579+
uses: actions/setup-go@v4
578580
- name: Use PSSVG Action
579581
uses: StartAutomating/PSSVG@main
580582
id: PSSVG
581583
- name: UsePiecemeal
582584
uses: StartAutomating/Piecemeal@main
585+
- name: Initialize Splatter
586+
uses: StartAutomating/Splatter@main
587+
id: Splatter
583588
- name: BuildPipeScript
584589
uses: StartAutomating/PipeScript@main
585-
- name: UseEZOut
590+
- name: Run EZOut (on master)
591+
if: ${{github.ref_name == 'master'}}
586592
uses: StartAutomating/EZOut@master
593+
id: EZOutMaster
594+
- name: Run EZOut (on branch)
595+
if: ${{github.ref_name != 'master'}}
596+
uses: ./
597+
id: EZOutBranch
587598
- name: UseHelpOut
588599
uses: StartAutomating/HelpOut@master
600+
- name: GitLogger
601+
uses: GitLogging/GitLoggerAction@main
602+
id: GitLogger
589603

0 commit comments

Comments
 (0)