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

[HOLD] add new workflow step to speechToTextWF #827

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion config/workflows/speechToTextWF.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
<prereq>stt-create</prereq>
<label>Move new STT files to workspace</label>
</process>
<process name="update-cocina">
<process name="process-files">
<prereq>stage-files</prereq>
<label>Process speech to text files to remove problematic phrases</label>
</process>
<process name="update-cocina">
<prereq>process-files</prereq>
<label>Add new STT files to cocina structural with correct attributes</label>
</process>
<process name="stt-workspace-cleanup">
Expand Down
3 changes: 1 addition & 2 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2024_04_02_194159) do
ActiveRecord::Schema[7.2].define(version: 2024_04_02_194159) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

Expand Down Expand Up @@ -46,5 +46,4 @@
t.index ["status", "workflow", "process", "druid"], name: "step_name_with_druid_workflow2_idx"
t.index ["status", "workflow", "process"], name: "step_name_workflow2_idx"
end

end