Skip to content
Merged

#2701 #1877

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
14 changes: 13 additions & 1 deletion .github/actions/dingorunner/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,20 @@ then
storeKey
terminusApi
branch="${GITHUB_REF#refs/heads/}"
commands=$(cat robo/assets/md/$branch)
commands=$(cat robo/assets/md/$branch | tr -d '[:space:]')
echo $commands
terminus env:wake accessmatch.$branch
# Wait for any active Pantheon workflows (sync_code/deploy quicksilver) to finish
echo "Waiting for Pantheon workflows to complete..."
for i in $(seq 1 24); do
running=$(terminus workflow:list accessmatch.$branch --format=csv --fields=status 2>/dev/null | grep -c "running" || true)
if [ "$running" = "0" ]; then
echo "Workflows complete."
break
fi
echo "Workflow still running... attempt $i"
sleep 15
done
terminus remote:drush accessmatch.$branch -- domain:default $commands
echo "Set domain to: $commands"
fi
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,4 +237,3 @@ The email secret is the email you use with pantheon and the token can be setup u
You can create, open, and ssh into your codespaces using Github CLI, see [install instructions](https://github.com/cli/cli#installation) to install on your local system. Once installed check out the [documentation](https://docs.github.com/en/codespaces/developing-in-codespaces/using-github-codespaces-with-github-cli) for commands you can use. You can authorize Github CLI by running the following command:

```gh auth login```

8 changes: 4 additions & 4 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion robo/assets/md/md-2686

This file was deleted.

File renamed without changes.
5 changes: 1 addition & 4 deletions web/private/scripts/drush_deploy/drush_deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,4 @@

echo "Running drush deploy...\n";
passthru('drush deploy');
echo "Import of configuration complete.\n";
echo "Rebuilding cache.\n";
passthru('drush cr');
echo "Rebuilding cache complete.\n";
echo "drush deploy complete.\n";
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ display:
exclude: false
alter:
alter_text: true
text: "{{ field_user_badges }}\r\n<div class=\"cssn-directory-item\">\r\n <div class=\"flex d-flex justify-content-between\">\r\n <div class=\"cssn-photo\">\r\n {{ user_picture }}\r\n </div>\r\n <div style=\"min-width: 100px;\">\r\n!!!!=-=-= This line is programmatically replaced, if you change anything in this line you'll break badges. See cssn.module to fix any issues =-=-=-=-!!!!\r\n </div>\r\n </div>\r\n <div class=\"my-1.5 mb-0 leading-5\">\r\n <a class=\"stretched-link text-dark-teal hover--text-orange no-underline text-xl font-bold\" href=\"/community-persona/{{ uid }}\">{{ field_user_first_name }} {{ field_user_last_name }}</a>\r\n </div>\r\n <div class=\"m-0 font-semibold text-lg leading-5\">\r\n {{ field_access_organization }}\r\n </div>\r\n <div class=\"mb-3\">\r\n {{ field_current_occupation }}\r\n </div>\r\n <div class=\"square-tags ontop-links [&_ul]--list-none [&_li]--inline-block [&_li]--ms-0 [&_li]--mb-1 [&_li]--relative [&_li]--z-10\"> \r\n {{ user_skills_id }}\r\n </div>\r\n</div>"
text: "{{ field_user_badges }}\r\n<div class=\"cssn-directory-item\">\r\n <div class=\"flex d-flex\">\r\n <div class=\"cssn-photo\">\r\n {{ user_picture }}\r\n </div>\r\n <div class=\"cssn-badges\">\r\n!!!!=-=-= This line is programmatically replaced, if you change anything in this line you'll break badges. See cssn.module to fix any issues =-=-=-=-!!!!\r\n </div>\r\n </div>\r\n <div class=\"my-1.5 mb-0 leading-5\">\r\n <a class=\"stretched-link text-dark-teal hover--text-orange no-underline text-xl font-bold\" href=\"/community-persona/{{ uid }}\">{{ field_user_first_name }} {{ field_user_last_name }}</a>\r\n </div>\r\n <div class=\"m-0 font-semibold text-lg leading-5\">\r\n {{ field_access_organization }}\r\n </div>\r\n <div class=\"mb-3\">\r\n {{ field_current_occupation }}\r\n </div>\r\n <div class=\"square-tags ontop-links [&_ul]--list-none [&_li]--inline-block [&_li]--ms-0 [&_li]--mb-1 [&_li]--relative [&_li]--z-10\"> \r\n {{ user_skills_id }}\r\n </div>\r\n</div>"
make_link: false
path: ''
absolute: false
Expand Down Expand Up @@ -1177,7 +1177,6 @@ display:
- 'languages:language_interface'
- url
- url.query_args
- url.site
tags:
- 'config:facets.facet.access_organization'
- 'config:facets.facet.roles'
Expand Down
Loading