├── Build ├── build.depend.psd1 ├── build.ps1 ├── build.psake.ps1 └── deploy.psdeploy.ps1 ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Documentation ├── Invoke-SlackBot.md └── Send-SlackMsg.md ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── SlackBot ├── Private │ ├── ConvertFrom-UnixTime.ps1 │ └── Write-Log.ps1 ├── Public │ ├── Invoke-SlackBot.ps1 │ └── Send-SlackMsg.ps1 ├── SlackBot.Format.ps1xml ├── SlackBot.psd1 ├── SlackBot.psm1 └── en-US │ └── about_SlackBot.help.txt ├── Tests ├── Common │ ├── Help.Tests.ps1 │ ├── Manifest.Tests.ps1 │ └── PSSA.Tests.ps1 └── SlackBot.tests.ps1 └── azure-pipelines.yml /Build/build.depend.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Build/build.depend.psd1 -------------------------------------------------------------------------------- /Build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Build/build.ps1 -------------------------------------------------------------------------------- /Build/build.psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Build/build.psake.ps1 -------------------------------------------------------------------------------- /Build/deploy.psdeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Build/deploy.psdeploy.ps1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [1.0.62] - 2019-09-10 4 | 5 | * Test deployment. 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/Invoke-SlackBot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Documentation/Invoke-SlackBot.md -------------------------------------------------------------------------------- /Documentation/Send-SlackMsg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Documentation/Send-SlackMsg.md -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/README.md -------------------------------------------------------------------------------- /SlackBot/Private/ConvertFrom-UnixTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/Private/ConvertFrom-UnixTime.ps1 -------------------------------------------------------------------------------- /SlackBot/Private/Write-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/Private/Write-Log.ps1 -------------------------------------------------------------------------------- /SlackBot/Public/Invoke-SlackBot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/Public/Invoke-SlackBot.ps1 -------------------------------------------------------------------------------- /SlackBot/Public/Send-SlackMsg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/Public/Send-SlackMsg.ps1 -------------------------------------------------------------------------------- /SlackBot/SlackBot.Format.ps1xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SlackBot/SlackBot.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/SlackBot.psd1 -------------------------------------------------------------------------------- /SlackBot/SlackBot.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/SlackBot/SlackBot.psm1 -------------------------------------------------------------------------------- /SlackBot/en-US/about_SlackBot.help.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Common/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Tests/Common/Help.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Common/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Tests/Common/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Common/PSSA.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Tests/Common/PSSA.Tests.ps1 -------------------------------------------------------------------------------- /Tests/SlackBot.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/Tests/SlackBot.tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markwragg/Powershell-SlackBot/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------