Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install packs algorithm #34609

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3c5684b
added algorithm
eyalpalo May 10, 2024
956a6ac
chenge
eyalpalo May 23, 2024
ad182fc
Merge branch 'master' of github.com:demisto/content into install_pack…
eyalpalo May 23, 2024
77c22b6
Merge branch 'master' of github.com:demisto/content into install_pack…
eyalpalo May 29, 2024
9b68dc3
test
eyalpalo May 29, 2024
4324217
test
eyalpalo Jun 3, 2024
0e4e9fe
Merge branch 'master' of github.com:demisto/content into install_pack…
eyalpalo Jun 3, 2024
fb2a44c
test
eyalpalo Jun 3, 2024
163558e
test
eyalpalo Jun 4, 2024
11e5fa1
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 13, 2024
a04f218
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 16, 2024
5872a36
test
michal-dagan Jun 17, 2024
d1fa16a
Merge remote-tracking branch 'origin/master' into install_packs_algor…
michal-dagan Jun 17, 2024
dcda22c
test
michal-dagan Jun 17, 2024
5fdafdd
test
michal-dagan Jun 17, 2024
12e9c14
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 18, 2024
96efd06
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 24, 2024
787692f
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 24, 2024
7825140
Merge remote-tracking branch 'origin/master' into install_packs_algor…
michal-dagan Jun 24, 2024
af28c2e
fix
michal-dagan Jun 24, 2024
2853e56
fix
michal-dagan Jun 25, 2024
b5c3b57
Merge branch 'master' into install_packs_algorithm
michal-dagan Jun 25, 2024
768fe9d
test tpb
michal-dagan Jun 27, 2024
90166db
Merge remote-tracking branch 'origin/master' into install_packs_algor…
michal-dagan Jun 27, 2024
a685709
Merge remote-tracking branch 'origin/master' into install_packs_algor…
michal-dagan Jun 27, 2024
851cf4e
update branch
michal-dagan Jun 30, 2024
6553a15
Merge remote-tracking branch 'origin/master' into install_packs_algor…
michal-dagan Jun 30, 2024
991db5e
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 1, 2024
c0d37f6
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 2, 2024
cd38606
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 2, 2024
ae44728
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 4, 2024
f60132e
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 8, 2024
df08bd0
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 8, 2024
1b394af
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 9, 2024
dcc9fee
Add modeling rules
michal-dagan Jul 10, 2024
f01dfa5
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 10, 2024
09646de
Merge branch 'master' into install_packs_algorithm
michal-dagan Jul 11, 2024
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
4 changes: 2 additions & 2 deletions .gitlab/ci/.gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
variables:

Check failure on line 1 in .gitlab/ci/.gitlab-ci.yml

View workflow job for this annotation

GitHub Actions / protect-infra-files

Protected file modified

This file should not be changed in master. If you are sure it's necessary, ask for a force merge and explain the rationale.
CURRENT_BRANCH_NAME: $INFRA_BRANCH
CURRENT_BRANCH_NAME: "install_packs_algorithm"

include:
- file: "/.gitlab/ci/content-ci/ci/.gitlab-ci.yml"
ref: $INFRA_BRANCH
ref: "install_packs_algorithm"
project: "${CI_PROJECT_NAMESPACE}/infra"

default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

""" Constants """

APP_NAME = "ms-ews-o365"
APP_NAME = "ms-ews-o365" #test
FOLDER_ID_LEN = 120
MAX_INCIDENTS_PER_FETCH = 200
FETCH_TIME = demisto.params().get('fetch_time') or '10 minutes'
Expand Down
2 changes: 1 addition & 1 deletion Packs/Zoom/Integrations/Zoom/Zoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
DATE_FORMAT = '%Y-%m-%d %H:%M:%S'
PLAYGROUND_INVESTIGATION_TYPE = 9

# Note#1: type "Pro" is the old version, and "Licensed" is the new one, and i want to support both.
# Note#1: type "Pro" is the old version, and "Licensed" is the new one, and i want to support both. test
# Note#2: type "Corporate" is officially not supported any more, but i did not remove it just in case it still works.
USER_TYPE_MAPPING = {
"Basic": 1,
Expand Down
2 changes: 1 addition & 1 deletion Packs/Zoom/ModelingRules/Zoom/Zoom.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fromversion: 6.10.0
fromversion: 6.11.0
id: Zoom_Zoom_modeling_rule
name: Zoom Zoom Modeling Rule
rules: ''
Expand Down
Loading