Skip to content

Commit ff40939

Browse files
committed
don't use path filters
Signed-off-by: Connor Tsui <[email protected]>
1 parent 7db74f9 commit ff40939

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: CI
22

33
concurrency:
4+
# We could technically use `${{ github.workflow }}-${{ github.ref }}` here, but this is "safer" in
5+
# case someone decided to change the `cancel-in-progress` clause.
46
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
57
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
68

@@ -9,11 +11,6 @@ on:
911
branches: [develop]
1012
pull_request: { }
1113
workflow_dispatch: { }
12-
# TODO(connor): Maybe add these path filters.
13-
# paths-ignore:
14-
# - '**.md'
15-
# - 'docs/**'
16-
# - 'benchmarks-website/**'
1714

1815
permissions:
1916
actions: read

.github/workflows/docs.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ concurrency:
77
on:
88
push:
99
branches: [develop]
10-
# TODO(connor): Maybe add these path filters.
11-
# paths:
12-
# - 'docs/**'
13-
# - 'vortex-python/**'
14-
# - 'java/**'
15-
# - '**.rs'
1610
workflow_dispatch: { }
1711

1812
permissions:

0 commit comments

Comments
 (0)