Skip to content

Commit e2355b3

Browse files
committed
Fix workflow trigger path.
1 parent 45581bb commit e2355b3

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflow-gen/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using Logicality.GitHub.Actions.Workflow;
55
using static GitHubContexts;
66

7-
87
var contexts = Instance;
98
Component[] components = [
109
new("ignore-this",
@@ -37,7 +36,7 @@
3736
void GenerateCiWorkflow(Component component)
3837
{
3938
var workflow = new Workflow($"{component.Name}/ci");
40-
var paths = new[] { $".github/workflows/{component.Name}-**", $"src/{component.Name}/**" };
39+
var paths = new[] { $".github/workflows/{component.Name}-**", $"{component.Name}/**" };
4140

4241
workflow.On
4342
.WorkflowDispatch();

.github/workflows/access-token-management-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
push:
77
paths:
88
- .github/workflows/access-token-management-**
9-
- src/access-token-management/**
9+
- access-token-management/**
1010
pull_request:
1111
paths:
1212
- .github/workflows/access-token-management-**
13-
- src/access-token-management/**
13+
- access-token-management/**
1414
env:
1515
DOTNETT_NOLOGO: true
1616
DOTNET_CLI_TELEMETRY_OPTOUT: true

.github/workflows/identity-model-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
push:
77
paths:
88
- .github/workflows/identity-model-**
9-
- src/identity-model/**
9+
- identity-model/**
1010
pull_request:
1111
paths:
1212
- .github/workflows/identity-model-**
13-
- src/identity-model/**
13+
- identity-model/**
1414
env:
1515
DOTNETT_NOLOGO: true
1616
DOTNET_CLI_TELEMETRY_OPTOUT: true

.github/workflows/identity-model-oidc-client-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
push:
77
paths:
88
- .github/workflows/identity-model-oidc-client-**
9-
- src/identity-model-oidc-client/**
9+
- identity-model-oidc-client/**
1010
pull_request:
1111
paths:
1212
- .github/workflows/identity-model-oidc-client-**
13-
- src/identity-model-oidc-client/**
13+
- identity-model-oidc-client/**
1414
env:
1515
DOTNETT_NOLOGO: true
1616
DOTNET_CLI_TELEMETRY_OPTOUT: true

.github/workflows/ignore-this-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66
push:
77
paths:
88
- .github/workflows/ignore-this-**
9-
- src/ignore-this/**
9+
- ignore-this/**
1010
pull_request:
1111
paths:
1212
- .github/workflows/ignore-this-**
13-
- src/ignore-this/**
13+
- ignore-this/**
1414
env:
1515
DOTNETT_NOLOGO: true
1616
DOTNET_CLI_TELEMETRY_OPTOUT: true

0 commit comments

Comments
 (0)