Skip to content

Commit

Permalink
Merge pull request #368 from SlateFoundation/develop
Browse files Browse the repository at this point in the history
Release: v2.21.5
  • Loading branch information
nbey authored Sep 22, 2023
2 parents 977830f + 996aafe commit 51eafe1
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 99 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:

- uses: JarvusInnovations/infra-components@channels/github-actions/release-prepare/latest
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
release-branch: releases/v2
2 changes: 1 addition & 1 deletion .holo/branches/docs-site/_slate.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[holomapping]
root = "docs"
files = [
"docs/**",
"mkdocs.*.yml"
]
6 changes: 6 additions & 0 deletions .holo/branches/docs-site/docs/_slate.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[holomapping]
root = "docs"
files = [
"**",
"!mkdocs.*.yml",
]
2 changes: 1 addition & 1 deletion .holo/sources/skeleton-v2.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[holosource]
url = "https://github.com/JarvusInnovations/emergence-skeleton-v2"
ref = "refs/tags/v2.12.5"
ref = "refs/tags/v2.12.7"
74 changes: 0 additions & 74 deletions Dockerfile

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions habitat/composite/default.toml

This file was deleted.

10 changes: 0 additions & 10 deletions habitat/composite/plan.sh

This file was deleted.

2 changes: 0 additions & 2 deletions habitat/default.toml

This file was deleted.

8 changes: 0 additions & 8 deletions habitat/plan.sh

This file was deleted.

8 changes: 8 additions & 0 deletions php-classes/Slate/Connectors/AbstractSpreadsheetConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,14 @@ public static function pullStudents(IJob $Job, SpreadsheetReader $spreadsheet, $

// apply values from spreadsheet
try {
if (!$Record->isA(User::class)) {
throw new RemoteRecordInvalid(
'not-a-user',
sprintf('Matched student to record %s from row #%u, but record class is not user or student...refusing to promote automatically', $Record->getTitle(), $results['analyzed']),
$row
);
}

static::_applyStudentUserChanges($Job, $Record, $row, $results);
} catch (RemoteRecordInvalid $e) {
if ($e->getValueKey()) {
Expand Down

0 comments on commit 51eafe1

Please sign in to comment.