diff --git a/.github/workflows/containerbuild.yml b/.github/workflows/containerbuild.yml index 361b0fad36..dc32de8ca8 100644 --- a/.github/workflows/containerbuild.yml +++ b/.github/workflows/containerbuild.yml @@ -6,6 +6,7 @@ on: - unstable - hotfixes - master + - search-recommendations tags: - 'v*' pull_request: diff --git a/.github/workflows/notify_team_new_comment.yml b/.github/workflows/notify_team_new_comment.yml index 5c4f675d09..99744d3341 100644 --- a/.github/workflows/notify_team_new_comment.yml +++ b/.github/workflows/notify_team_new_comment.yml @@ -19,9 +19,9 @@ jobs: steps: - name: Escape title double quotes id: escape_title - run: | - title='${{ github.event.issue.title }}' - echo "ISSUE_TITLE=${title//\"/\\\"}" >> "$GITHUB_OUTPUT" + env: + ISSUE_TITLE: ${{ github.event.issue.title }} + run: echo "ISSUE_TITLE=${ISSUE_TITLE//\"/\\\"}" >> "$GITHUB_OUTPUT" - name: Send message to Slack channel env: diff --git a/contentcuration/contentcuration/frontend/accounts/pages/Create.vue b/contentcuration/contentcuration/frontend/accounts/pages/Create.vue index b211cd5634..6553feb29f 100644 --- a/contentcuration/contentcuration/frontend/accounts/pages/Create.vue +++ b/contentcuration/contentcuration/frontend/accounts/pages/Create.vue @@ -132,7 +132,7 @@ - diff --git a/contentcuration/contentcuration/frontend/channelEdit/components/AssessmentEditor/AssessmentEditor.spec.js b/contentcuration/contentcuration/frontend/channelEdit/components/AssessmentEditor/AssessmentEditor.spec.js index 3d04240b13..a2d3b9d5d8 100644 --- a/contentcuration/contentcuration/frontend/channelEdit/components/AssessmentEditor/AssessmentEditor.spec.js +++ b/contentcuration/contentcuration/frontend/channelEdit/components/AssessmentEditor/AssessmentEditor.spec.js @@ -73,7 +73,7 @@ const checkShowAnswers = wrapper => { wrapper .find('[data-test="showAnswersCheckbox"]') .find('input') - .setChecked(true); + .element.click(); }; const getItems = wrapper => { diff --git a/contentcuration/contentcuration/frontend/channelEdit/components/edit/AccessibilityOptions.vue b/contentcuration/contentcuration/frontend/channelEdit/components/edit/AccessibilityOptions.vue index f54648c0cb..1cea23081b 100644 --- a/contentcuration/contentcuration/frontend/channelEdit/components/edit/AccessibilityOptions.vue +++ b/contentcuration/contentcuration/frontend/channelEdit/components/edit/AccessibilityOptions.vue @@ -14,7 +14,7 @@ color="primary" :data-test="`checkbox-${accessibilityItem.help}`" > -