Skip to content

Commit

Permalink
fix: properly ignore workspace paths from root during ci (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Sep 21, 2022
1 parent dd944ab commit e19ebc3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/content/_on-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pull_request:
{{/if}}
{{#if isRootMono}}
paths-ignore:
{{#each workspaceGlob}}
{{#each workspaceGlobs}}
- {{ . }}
{{/each}}
{{/if}}
Expand All @@ -21,7 +21,7 @@ push:
{{/if}}
{{#if isRootMono}}
paths-ignore:
{{#each workspaceGlob}}
{{#each workspaceGlobs}}
- {{ . }}
{{/each}}
{{/if}}
Expand Down
4 changes: 4 additions & 0 deletions tap-snapshots/test/apply/source-snapshots.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -1665,11 +1665,15 @@ on:
workflow_dispatch:
pull_request:
paths-ignore:
- workspaces/a/**
- workspaces/b/**
push:
branches:
- main
- latest
paths-ignore:
- workspaces/a/**
- workspaces/b/**
schedule:
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
- cron: "0 9 * * 1"
Expand Down

0 comments on commit e19ebc3

Please sign in to comment.