File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,21 @@ jobs:
181
181
outputs :
182
182
dependency_cache_key : ${{ steps.compute_lockfile_hash.outputs.hash }}
183
183
184
+ job_check_branches :
185
+ name : Check PR branches
186
+ needs : job_get_metadata
187
+ runs-on : ubuntu-20.04
188
+ if : github.event_name == 'pull_request'
189
+ permissions :
190
+ pull-requests : write
191
+ steps :
192
+ - name : PR is opened against master
193
+ uses : mshick/add-pr-comment@v2
194
+ if : github.ref == 'refs/heads/master' && github.head_ref != 'refs/heads/develop'
195
+ with :
196
+ message : |
197
+ ⚠️ This PR is opened against **master**. You probably want to open it against **develop**.
198
+
184
199
job_build :
185
200
name : Build
186
201
needs : [job_get_metadata, job_install_deps]
@@ -709,6 +724,7 @@ jobs:
709
724
job_browser_playwright_tests,
710
725
job_browser_integration_tests,
711
726
job_remix_integration_tests,
727
+ job_e2e_tests,
712
728
]
713
729
# Always run this, even if a dependent job failed
714
730
if : always()
You can’t perform that action at this time.
0 commit comments