Skip to content

Commit

Permalink
Merge pull request #147 from StartAutomating/EZ-Improvement
Browse files Browse the repository at this point in the history
EZOut 2.0
  • Loading branch information
StartAutomating authored Jul 20, 2023
2 parents 1a1a7dd + 6640a3d commit 4ffc2a8
Show file tree
Hide file tree
Showing 152 changed files with 4,966 additions and 6,000 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [StartAutomating]
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Bug Report
description: Report a Problem
title: ""
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
What's broken? Let's get some info and get it fixed.
- type: textarea
id: Description
attributes:
label: Description
description: Describe what's wrong.
validations:
required: true
- type: textarea
id: ReproSteps
attributes:
label: Reproducable Steps
description: A script that would generate the error
render: PowerShell
validations:
required: false
- type: textarea
id: Links
attributes:
label: Links
description: Any related links.
validations:
required: false
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/Example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Add Example
description: Add an Example
title: "Example: "
labels: ["HowTo"]
body:
- type: markdown
attributes:
value: |
Tell us a bit about your example
- type: textarea
id: Example
attributes:
label: Example
description: The example content.
render: PowerShell
validations:
required: false
- type: textarea
id: Links
attributes:
label: Links
description: Any related links.
validations:
required: false
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/FeatureRequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Feature Request
description: Request a Feature
title: ""
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Tell us a little bit about what you'd like.
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/NewCommand.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: New Command
description: Request a new command
title: ""
labels: ["enhancement"]
assignees:
- startautomating
body:
- type: markdown
attributes:
value: |
Want this module to include a new command? Tell us more.
- type: input
id: Synopsis
attributes:
label: Synopsis
description: A Synopsis of the command.
validations:
required: true
- type: textarea
id: Description
attributes:
label: Description
description: A description of the command
validations:
required: false
- type: textarea
id: Example
attributes:
label: Example
description: An example of using the command
render: PowerShell
validations:
required: false
- type: textarea
id: Links
attributes:
label: Links
description: Any related links.
validations:
required: false
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

name: OnIssueChanged
on:
issues:
workflow_dispatch:
jobs:
RunGitPub:
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/TestReleaseAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -575,15 +575,29 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup GO
uses: actions/setup-go@v4
- name: Use PSSVG Action
uses: StartAutomating/PSSVG@main
id: PSSVG
- name: UsePiecemeal
uses: StartAutomating/Piecemeal@main
- name: Initialize Splatter
uses: StartAutomating/Splatter@main
id: Splatter
- name: BuildPipeScript
uses: StartAutomating/PipeScript@main
- name: UseEZOut
- name: Run EZOut (on master)
if: ${{github.ref_name == 'master'}}
uses: StartAutomating/EZOut@master
id: EZOutMaster
- name: Run EZOut (on branch)
if: ${{github.ref_name != 'master'}}
uses: ./
id: EZOutBranch
- name: UseHelpOut
uses: StartAutomating/HelpOut@master
- name: GitLogger
uses: GitLogging/GitLoggerAction@main
id: GitLogger

Loading

0 comments on commit 4ffc2a8

Please sign in to comment.