Skip to content

Commit b400d23

Browse files
authored
Merge pull request #193 from mindsdb/fix/cla_token
Fix CLA Action
2 parents 8ffb085 + 956665f commit b400d23

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

.github/workflows/cla.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@ on:
33
issue_comment:
44
types: [created]
55
pull_request_target:
6-
types: [opened,closed,synchronize]
6+
types: [opened,closed,synchronize]
7+
8+
permissions:
9+
actions: write
10+
contents: write
11+
pull-requests: write
12+
statuses: write
13+
714
jobs:
815
CLAssistant:
9-
runs-on: ubuntu-latest
16+
runs-on: mdb-dev
1017
steps:
1118
- name: "CLA Assistant"
1219
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
1320
uses: contributor-assistant/[email protected]
14-
env:
15-
GITHUB_TOKEN: ${{ secrets.CLA_TOKEN }}
16-
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_TOKEN }}
17-
with:
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
with:
1824
path-to-signatures: 'assets/contributions-agreement/cla.json'
19-
# Add path to the CLA here
2025
path-to-document: 'https://github.com/mindsdb/mindsdb/blob/main/assets/contributions-agreement/individual-contributor.md'
2126
branch: 'cla'
2227
allowlist: bot*, ZoranPandovski, torrmal, Stpmax, mindsdbadmin, ea-rus, tmichaeldb, dusvyat, hamishfagg, MinuraPunchihewa, martyna-mindsdb, lucas-koontz

.github/workflows/release.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ jobs:
3131
3232
fi
3333
shell: bash
34-
env:
35-
CHECK_FOR_UPDATES: False
36-
DATABASE_CREDENTIALS_STRINGIFIED_JSON: ${{ secrets.DATABASE_CREDENTIALS }}
37-
CLOUD_TEST_EMAIL: ${{ secrets.CLOUD_TEST_EMAIL }}
38-
CLOUD_TEST_PASSWORD: ${{ secrets.CLOUD_TEST_PASSWORD }}
3934

4035

4136
deploy:

.github/workflows/test_prs.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,6 @@ jobs:
3232
3333
fi
3434
shell: bash
35-
env:
36-
CHECK_FOR_UPDATES: False
37-
DATABASE_CREDENTIALS_STRINGIFIED_JSON: ${{ secrets.DATABASE_CREDENTIALS }}
38-
CLOUD_TEST_EMAIL: ${{ secrets.CLOUD_TEST_EMAIL }}
39-
CLOUD_TEST_PASSWORD: ${{ secrets.CLOUD_TEST_PASSWORD }}
4035

4136
coverage:
4237
needs: test

0 commit comments

Comments
 (0)