-
Notifications
You must be signed in to change notification settings - Fork 0
🚀[Feature]: Linting and Documentation Improvements with Conditional Summary Option #226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4bd8efa
🩹 [Patch]: Clear super-linter summary after successful runs
MariusStorhaug 80de5d1
Update .github/workflows/workflow.yml
MariusStorhaug adba801
Remove obsolete PowerShell scripts and templates for feature management
MariusStorhaug 5a587d9
🩹 [Refactor]: Replace Write-Host with Write-Warning in BeforeAll and …
MariusStorhaug 831d230
🩹 [Patch]: Update super-linter summary clearing method for improved c…
MariusStorhaug e212b33
🩹 [Refactor]: Simplify super-linter summary clearing method by using …
MariusStorhaug 06f46e6
🩹 [Refactor]: Update super-linter summary clearing method to use Out-…
MariusStorhaug 4b980c8
🩹 [Refactor]: Enhance super-linter integration by posting summary on …
MariusStorhaug f79dd93
🩹 [Refactor]: Add super-linter summary generation on failure to impro…
MariusStorhaug 89c17c6
🩹 [Refactor]: Remove redundant job failure step for super-linter to s…
MariusStorhaug f5f907c
🩹 [Refactor]: Specify shell type for super-linter summary generation …
MariusStorhaug cdade77
feat: Add PowerShell scripts for feature management and implementatio…
MariusStorhaug 5406c1e
feat: Add PowerShell scripts for feature management and implementatio…
MariusStorhaug dcdee40
🩹 [Refactor]: Remove continue-on-error from super-linter step to enfo…
MariusStorhaug d5e847c
🩹 [Refactor]: Update PSModule.yml to uncomment Skip option and ensure…
MariusStorhaug b87d817
🩹 [Refactor]: Remove continue-on-error from super-linter step for str…
MariusStorhaug 6ca23d6
🩹 [Refactor]: Clean up README.md by removing duplicate header; update…
MariusStorhaug 9d8f13d
feat: Add DEFAULT_WORKSPACE input to super-linter step for improved w…
MariusStorhaug cc867bb
feat: Update default input for repo path to use github.workspace for …
MariusStorhaug 4daf0d6
fix: Update default WorkingDirectory input to '.' for improved compat…
MariusStorhaug 97bc571
feat: Update super-linter configuration to use WorkingDirectory input…
MariusStorhaug 4e0ce7d
fix: Update FILTER_REGEX_INCLUDE to use WorkingDirectory for accurate…
MariusStorhaug aa64e91
fix: Remove duplicate header in README.md for clarity
MariusStorhaug cca2705
fix: Update module description to clarify purpose and include bug fix…
MariusStorhaug fa6c4f2
fix: Remove bug fix note from module description for clarity
MariusStorhaug 2026336
Update README.md
MariusStorhaug 440affe
fix: Add header to GitHub Copilot instructions and remove obsolete pr…
MariusStorhaug File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| Write-Host "=== AFTERALL TEARDOWN SCRIPT (Environments) EXECUTING ===" | ||
| Write-Host "Tearing down test environment for Environments..." | ||
| Write-Warning "=== AFTERALL TEARDOWN SCRIPT (Environments) EXECUTING ===" | ||
| Write-Warning "Tearing down test environment for Environments..." | ||
|
|
||
| # Example teardown tasks for Environments directory: | ||
| Write-Host "Cleaning up Environments test environment..." | ||
| Write-Warning "Cleaning up Environments test environment..." | ||
|
|
||
| Write-Host "Environments environment teardown completed successfully!" | ||
| Write-Host "=== AFTERALL TEARDOWN SCRIPT (Environments) COMPLETED ===" | ||
| Write-Warning "Environments environment teardown completed successfully!" | ||
| Write-Warning "=== AFTERALL TEARDOWN SCRIPT (Environments) COMPLETED ===" | ||
MariusStorhaug marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| Write-Host "=== BEFOREALL SETUP SCRIPT EXECUTING ===" | ||
| Write-Host "Setting up test environment..." | ||
| Write-Warning "=== BEFOREALL SETUP SCRIPT EXECUTING ===" | ||
| Write-Warning "Setting up test environment..." | ||
|
|
||
| # Example setup tasks for test environment: | ||
| Write-Host "Initializing test environment..." | ||
| Write-Warning "Initializing test environment..." | ||
|
|
||
| Write-Host "Test environment setup completed successfully!" | ||
| Write-Host "=== BEFOREALL SETUP SCRIPT COMPLETED ===" | ||
| Write-Warning "Test environment setup completed successfully!" | ||
| Write-Warning "=== BEFOREALL SETUP SCRIPT COMPLETED ===" | ||
MariusStorhaug marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.