mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-09-09 00:26:40 +00:00

This connector: - takes a Jira Cloud URL, user email and api token; to authenticate into Jira Cloud - ingests: - either all issues in all projects in a Jira Cloud Organization - or - issues in user specified projects, boards - user specified issues - processes this kind of data: - text fields such as issue summary, description, and comments - dropdown fields such as issue type, status, priority, assignee, reporter, labels, and components - other data such as issue id, issue key, project id, information on subtasks - notes down attachment URLs, however does not process attachments - stores each downloaded issue in a txt file, in a predefined template form (consisting of the data above) - then processes each downloaded issue document into elements using unstructured library - related to: https://github.com/Unstructured-IO/unstructured/issues/263 To test the changes, make the necessary setups and run the relevant ingest test scripts. --------- Co-authored-by: ryannikolaidis <1208590+ryannikolaidis@users.noreply.github.com> Co-authored-by: ahmetmeleq <ahmetmeleq@users.noreply.github.com>
43 lines
2.0 KiB
Bash
Executable File
43 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR"/.. || exit 1
|
|
|
|
# NOTE(crag): sets number of tesseract threads to 1 which may help with more reproducible outputs
|
|
export OMP_THREAD_LIMIT=1
|
|
|
|
./test_unstructured_ingest/test-ingest-s3.sh
|
|
./test_unstructured_ingest/test-ingest-azure.sh
|
|
./test_unstructured_ingest/test-ingest-box.sh
|
|
./test_unstructured_ingest/test-ingest-discord.sh
|
|
./test_unstructured_ingest/test-ingest-dropbox.sh
|
|
./test_unstructured_ingest/test-ingest-github.sh
|
|
./test_unstructured_ingest/test-ingest-gitlab.sh
|
|
./test_unstructured_ingest/test-ingest-google-drive.sh
|
|
./test_unstructured_ingest/test-ingest-wikipedia.sh
|
|
./test_unstructured_ingest/test-ingest-biomed-api.sh
|
|
./test_unstructured_ingest/test-ingest-biomed-path.sh
|
|
./test_unstructured_ingest/test-ingest-local.sh
|
|
./test_unstructured_ingest/test-ingest-slack.sh
|
|
./test_unstructured_ingest/test-ingest-against-api.sh
|
|
./test_unstructured_ingest/test-ingest-gcs.sh
|
|
./test_unstructured_ingest/test-ingest-onedrive.sh
|
|
./test_unstructured_ingest/test-ingest-outlook.sh
|
|
./test_unstructured_ingest/test-ingest-elasticsearch.sh
|
|
./test_unstructured_ingest/test-ingest-confluence-diff.sh
|
|
./test_unstructured_ingest/test-ingest-confluence-large.sh
|
|
./test_unstructured_ingest/test-ingest-airtable-diff.sh
|
|
./test_unstructured_ingest/test-ingest-airtable-large.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file-with-encoding.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file-with-pdf-infer-table-structure.sh
|
|
./test_unstructured_ingest/test-ingest-notion.sh
|
|
./test_unstructured_ingest/test-ingest-delta-table.sh
|
|
./test_unstructured_ingest/test-ingest-salesforce.sh
|
|
./test_unstructured_ingest/test-ingest-jira.sh
|
|
# NOTE(yuming): The following test should be put after any tests with --preserve-downloads option
|
|
./test_unstructured_ingest/test-ingest-pdf-fast-reprocess.sh
|
|
./test_unstructured_ingest/test-ingest-sharepoint.sh
|