Skip to content

Commit 9418c9d

Browse files
authored
Add skip CI to preview action
1 parent e672ef3 commit 9418c9d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/preview.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
on: [status]
22
jobs:
33
circleci_artifacts_redirector_job:
4-
if: ${{ github.repository_owner == 'data-apis' }}
4+
# Don't run Action on forks, and allow skipping CI
5+
if: "github.repository == 'data-apis/array-api' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')"
56
runs-on: ubuntu-latest
67
name: Run CircleCI artifacts redirector
78
steps:

0 commit comments

Comments
 (0)