Eventful.GithubWorkflow.psdevops.ps1
#requires -Module PSDevOps Import-BuildStep -Module Eventful New-GitHubWorkflow -Name "Analyze, Test, Tag, and Publish" -On Push, PullRequest, Demand -Job PowerShellStaticAnalysis, TestPowerShellOnLinux, TagReleaseAndPublish, BuildEventful -Environment @{ NoCoverage = $true }| Set-Content .\.github\workflows\TestAndPublish.yml -Encoding UTF8 -PassThru New-GitHubWorkflow -On Issue, Demand -Job RunGitPub -Name OnIssueChanged | Set-Content (Join-Path $PSScriptRoot .github\workflows\OnIssue.yml) -Encoding UTF8 -PassThru |