Skip to content

Commit

Permalink
Ignore Markdown and TOc when collecting samples
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonGraal committed Sep 10, 2024
1 parent 23b0120 commit 1b61000
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion collect-samples.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ finally {

$gitDetails | Set-Content "$dest/git-details.txt"

Get-ChildItem $source -Recurse | ForEach-Object {
Get-ChildItem $source -Recurse -Exclude "*.md","*.yml" | ForEach-Object {
$relative = Resolve-Path -RelativeBasePath $source -Relative $_
$to = Join-Path $dest $relative
Copy-Item $_ $to -Force
Expand Down
2 changes: 1 addition & 1 deletion test/GqlPlus.ComponentTestBase/OperationData.gen.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Generated from .\test\GqlPlus.ComponentTestBase\Samples\Operation
// Collected from a71e213 (HEAD -> samples, origin/samples) 2024-09-02 Remove double trailing EOL
// Collected from 5c87b8a (HEAD -> samples, origin/samples) 2024-09-11 Improve convert and workflow


namespace GqlPlus;
Expand Down
2 changes: 1 addition & 1 deletion test/GqlPlus.ComponentTestBase/SampleData.gen.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Generated from .\test\GqlPlus.ComponentTestBase\Samples
// Collected from a71e213 (HEAD -> samples, origin/samples) 2024-09-02 Remove double trailing EOL
// Collected from 5c87b8a (HEAD -> samples, origin/samples) 2024-09-11 Improve convert and workflow


namespace GqlPlus;
Expand Down
2 changes: 1 addition & 1 deletion test/GqlPlus.ComponentTestBase/Samples/git-details.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a71e213 (HEAD -> samples, origin/samples) 2024-09-02 Remove double trailing EOL
5c87b8a (HEAD -> samples, origin/samples) 2024-09-11 Improve convert and workflow
2 changes: 1 addition & 1 deletion test/GqlPlus.ComponentTestBase/SchemaData.gen.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Generated from .\test\GqlPlus.ComponentTestBase\Samples\Schema
// Collected from a71e213 (HEAD -> samples, origin/samples) 2024-09-02 Remove double trailing EOL
// Collected from 5c87b8a (HEAD -> samples, origin/samples) 2024-09-11 Improve convert and workflow


namespace GqlPlus;
Expand Down

0 comments on commit 1b61000

Please sign in to comment.