File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ name : downstreams
2+
3+ on :
4+ pull_request :
5+ types : [opened, synchronize]
6+ merge_group :
7+ types : [checks_requested]
8+ push :
9+ # Always run on push to main. The build cache can only be reused
10+ # if it was saved by a run from the repository's default branch.
11+ # The run result will be identical to that from the merge queue
12+ # because the commit is identical, yet we need to perform it to
13+ # seed the build cache.
14+ branches :
15+ - main
16+
17+ permissions :
18+ id-token : write
19+ contents : read
20+ pull-requests : write
21+
22+ jobs :
23+ compatibility :
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ downstream :
28+ - name : ucx
29+ org : databrickslabs
30+ - name : blueprint
31+ org : databrickslabs
32+ runs-on : ubuntu-latest
33+ steps :
34+ - name : Checkout
35+ uses : actions/checkout@v3
36+ with :
37+ fetch-depth : 0
38+
39+ - name : Install Python
40+ uses : actions/setup-python@v4
41+ with :
42+ python-version : ' 3.10'
43+
44+ - name : Install toolchain
45+ run : |
46+ pip install hatch==1.9.4
47+
48+ - name : Acceptance
49+ uses : databrickslabs/sandbox/downstreams@downstreams/v0.0.1
50+ with :
51+ repo : ${{ matrix.downstream.name }}
52+ org : ${{ matrix.downstream.org }}
53+ env :
54+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments