Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1433210
Added validation for driver and executor shape details.
lu-ohai May 30, 2023
6ed266e
Updated pr.
lu-ohai Jun 2, 2023
5294fef
Support uploading large artifact for model deployment.
lu-ohai Jun 2, 2023
122445a
Updated unit test.
lu-ohai Jun 2, 2023
af12698
Updated pr.
lu-ohai Jun 5, 2023
000210a
Added docs.
lu-ohai Jun 6, 2023
589d93a
Fix jobs integration test (#219)
liudmylaru Jun 6, 2023
e71e398
Added validation for driver and executor shape details. (#211)
lu-ohai Jun 6, 2023
5fe97d4
Updated pr.
lu-ohai Jun 7, 2023
e008fad
Change link to api_keys.ipynb with instruction using OCI approach (#…
liudmylaru Jun 7, 2023
62dca37
bugfix/ODSC-43563/entryscript_mounted_as_directory (#218)
mingkang111 Jun 7, 2023
c798570
Deprecated ModelDeploymentProperties, ModelDeployer and updated Model…
lu-ohai Jun 8, 2023
6008077
Updated pr.
lu-ohai Jun 9, 2023
cad3d46
Updated pr.
lu-ohai Jun 9, 2023
2dbc2a0
Support uploading large artifact for model deployment. (#216)
lu-ohai Jun 9, 2023
60d5b7e
Updated pr.
lu-ohai Jun 9, 2023
147f6c4
Merge branch 'main' into ODSC-39781/deprecate_model_deployment_proper…
lu-ohai Jun 9, 2023
f46439d
feature/ODSC-41635/Support Data Flow Pools (#212)
mingkang111 Jun 9, 2023
c46e8a3
Adds a decorator to generate watch command for the run operation.
mrDzurb Jun 10, 2023
b727750
Adds a decorator to generate watch command for the run operation.
mrDzurb Jun 10, 2023
f6604b1
Deprecated ModelDeploymentProperties and ModelDeployer classes (#221)
lu-ohai Jun 12, 2023
be1e35f
Update THIRD_PARTY_LICENSES.txt (#223)
liudmylaru Jun 12, 2023
babe5ff
[ADS OPCTL] Display prebuilt watch command for monitoring jobs with O…
mrDzurb Jun 12, 2023
bb86b6e
ADS release v2.8.6 (#230)
liudmylaru Jun 13, 2023
190ecd0
Merge branch 'main' of github.com:oracle/accelerated-data-science int…
KshitizLohia Jun 15, 2023
02815a9
added licenses
KshitizLohia Jun 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/add-3plicense-warning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "Add 3P License Warning to PR"

on:
pull_request:
paths:
- setup.py

# Cancel in progress workflows on pull_requests.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions:
contents: read
pull-requests: write

jobs:
warning-message-3plicense:
name: Add ⚠️ Warning about 3p license
runs-on: ubuntu-latest
if: ${{ success() }} && ${{ github.event.issue.pull_request }}
steps:
- run: |
BODY_MSG=$(cat << EOF
⚠️ This PR changed **setup.py** file. ⚠️
- PR Creator must update 📃 THIRD_PARTY_LICENSES.txt, if any 📚 library added/removed in **setup.py**.
- PR Approver must confirm 📃 THIRD_PARTY_LICENSES.txt updated, if any 📚 library added/removed in **setup.py**.
EOF
)
echo "BODY_MSG<<EOF" >> $GITHUB_ENV
echo "$BODY_MSG" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- uses: actions/github-script@v6
with:
github-token: ${{ github.token }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `${{ env.BODY_MSG }}`
})
Loading