Skip to content

Commit a6ca610

Browse files
committed
fix: ignore validation of reqs FOR REAL (?)
1 parent d926d56 commit a6ca610

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/requirements-validate.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ on:
55
pull_request:
66
paths: ['requirements.txt']
77
types: [opened, synchronize, reopened]
8-
branches-ignore: ['epic/v3']
98

109
jobs:
1110
reject-requirements-drift:
11+
# To temporarily ignore epic/v3 branch, which introduces requirements.txt
12+
# TODO: Delete this after merging #246
13+
if: "!startsWith(github.head_ref, 'epic/')"
14+
1215
runs-on: ubuntu-latest
1316

1417
# Skip if the last commit was from the bot (prevent unnecessary check)

0 commit comments

Comments
 (0)