File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
name : " Check if a review is required from Connector teams"
14
14
runs-on : ubuntu-latest
15
15
16
- if : ${{ github.event.repository .fork == false }}
16
+ if : ${{ github.event.pull_request.head.repo .fork == false }}
17
17
# This workflow cannot run on forks, as the fork's github token does not have `read:org`
18
18
# permissions, which are required to check the user's team membership. We assume that a
19
19
# review on a fork's PR is always required from one or more connector teams and/or support.
Original file line number Diff line number Diff line change 17
17
(github.event.pull_request.head.repo.fork == false)
18
18
runs-on : tooling-test-small
19
19
steps :
20
- - name : Checkout Airbyte
20
+ - name : Checkout Airbyte (with credentials)
21
21
uses : actions/checkout@v3
22
22
with :
23
23
ref : ${{ github.head_ref }}
@@ -100,7 +100,7 @@ jobs:
100
100
runs-on : ubuntu-latest
101
101
steps :
102
102
# We have no creds. Ignore docker caching and just run the CLI.
103
- - name : Checkout code
103
+ - name : Checkout code (Unprivileged)
104
104
uses : actions/checkout@v4
105
105
with :
106
106
ref : ${{ github.head_ref }}
@@ -114,8 +114,8 @@ jobs:
114
114
id : install-airbyte-ci-binary
115
115
shell : bash
116
116
run : |
117
- curl -sSL "https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/latest/airbyte-ci" --output airbyte-ci-bin
118
- sudo mv airbyte-ci-bin /usr/local/bin/airbyte-ci
117
+ curl -sSL "https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/latest/airbyte-ci" --output airbyte-ci-bin
118
+ sudo mv airbyte-ci-bin /usr/local/bin/airbyte-ci
119
119
sudo chmod +x /usr/local/bin/airbyte-ci
120
120
- name : Run format checks
121
121
run : |
You can’t perform that action at this time.
0 commit comments