Skip to content

Commit 11e16da

Browse files
andrewkhofacebook-github-bot
authored andcommitted
remove label filters for test ci (meta-pytorch#1254)
Summary: Our tests are not being shown on PR creation because something in the filters disables them when facebook-github-bot adds the CLA Signed tag. Just disable the filters to match pytorch/pytorch repo setup ### Changes * Remove filters on actions CI - - Pull Request resolved: meta-pytorch#1254 Reviewed By: huydhn Differential Revision: D57135539 Pulled By: andrewkho fbshipit-source-id: f474593a1fdf0fa360673bc87ef41834cba86424
1 parent 4e70d26 commit 11e16da

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ on:
1515

1616
jobs:
1717
test:
18-
if:
19-
${{ github.repository_owner == 'pytorch' && (github.event.action != 'labeled' ||
20-
startsWith(github.event.label.name, 'ciflow')) }}
18+
if: ${{ github.repository_owner == 'pytorch' }}
2119
runs-on: ${{ matrix.os }}
2220
strategy:
2321
fail-fast: false
@@ -48,7 +46,7 @@ jobs:
4846
sudo apt update
4947
sudo apt install rar unrar libssl-dev libcurl4-openssl-dev zlib1g-dev
5048
- name: Setup Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5250
with:
5351
python-version: ${{ matrix.python-version }}
5452
- name: Setup msbuild on Windows
@@ -60,7 +58,7 @@ jobs:
6058
with:
6159
arch: x64
6260
- name: Check out source repository
63-
uses: actions/checkout@v3
61+
uses: actions/checkout@v4
6462
with:
6563
submodules: recursive
6664
- name: Install dependencies

.github/workflows/stateful_dataloader_ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ on:
1515

1616
jobs:
1717
test:
18-
if:
19-
${{ github.repository_owner == 'pytorch' && (github.event.action != 'labeled' ||
20-
startsWith(github.event.label.name, 'ciflow')) }}
18+
if: ${{ github.repository_owner == 'pytorch' }}
2119
runs-on: ${{ matrix.os }}
2220
strategy:
2321
fail-fast: false
@@ -48,7 +46,7 @@ jobs:
4846
sudo apt update
4947
sudo apt install rar unrar libssl-dev libcurl4-openssl-dev zlib1g-dev
5048
- name: Setup Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5250
with:
5351
python-version: ${{ matrix.python-version }}
5452
- name: Setup msbuild on Windows
@@ -60,7 +58,7 @@ jobs:
6058
with:
6159
arch: x64
6260
- name: Check out source repository
63-
uses: actions/checkout@v3
61+
uses: actions/checkout@v4
6462
with:
6563
submodules: recursive
6664
- name: Install dependencies

0 commit comments

Comments
 (0)