-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- SA 2021-042: updated linkit - HSD8-1152 Automate content staging (#969) - feat(STN-835): spotlight slider (#966) - Display contextual links on block content - Fix(STN-841): Collections paragraph type spacing to match Rows (#959) - fix(STN-877): remove color band from private collections (#964) - feat(STN-858): add .ptype-hs-priv-collection to list of classes getting width, margin-bottom, margin-top styles to override Drupal settings - Set aria-hidden attribute to "true"
- Loading branch information
Showing
25 changed files
with
433 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,8 +193,24 @@ update_dependencies: &update_dependencies | |
vendor/bin/blt circleci:update | ||
- save_cache: *save_cache | ||
|
||
# Declare all of the jobs we should run. | ||
run-content-stage: &run-content-stage | ||
docker: | ||
- image: cimg/php:7.4 | ||
steps: | ||
- checkout | ||
- run: composer install --optimize-autoloader | ||
- *disable_telemetry | ||
- run: vendor/bin/blt stage --no-interaction | ||
- slack/notify: | ||
event: fail | ||
channel: C750VBZCZ | ||
template: basic_fail_1 | ||
- slack/notify: | ||
event: pass | ||
channel: C750VBZCZ | ||
template: basic_success_1 | ||
|
||
# Declare all the jobs we should run. | ||
jobs: | ||
run-updates: | ||
<<: *update_dependencies | ||
|
@@ -212,8 +228,12 @@ jobs: | |
<<: *deploy_branch | ||
run-deploy-tag: | ||
<<: *deploy_tag | ||
run-content-stage: | ||
<<: *run-content-stage | ||
|
||
version: 2.1 | ||
orbs: | ||
slack: circleci/[email protected] | ||
# Declare a workflow that runs all of our jobs in parallel. | ||
workflows: | ||
version: 2.1 | ||
|
@@ -260,3 +280,14 @@ workflows: | |
- /9\..*-release/ | ||
jobs: | ||
- run-updates | ||
'Stage Content from Production': | ||
jobs: | ||
- run-content-stage: | ||
context: slack-secrets | ||
triggers: | ||
- schedule: | ||
cron: "0 23 * * 3" | ||
filters: | ||
branches: | ||
only: | ||
- /develop/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.