Skip to content

Commit 7fb3e46

Browse files
Allow unpinned actions from Shopify
1 parent 8e88e9e commit 7fb3e46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/features/steps/github-actions.steps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ When(/I look at the github actions we use/, async function () {
1414

1515
Then(/I see all non-official actions being pinned/, async function () {
1616
const remaining: string[] = this.githubActions.filter(
17-
// we skip the ones from github or from the repo
18-
(action: string) => !action.startsWith('actions/') && !action.startsWith('./'),
17+
// we skip the ones from github, from the repo or from Shopify
18+
(action: string) => !action.startsWith('actions/') && !action.startsWith('./') && !action.startsWith('Shopify/'),
1919
)
2020
const unpinned = remaining.filter(
2121
(action: string) =>

0 commit comments

Comments
 (0)