Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- uses: julia-actions/setup-julia@4c0cb0fce8556fdb04a90347310e5db8b1f98fb9 # v2
- uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # v3.0.2
with:
version: ${{ matrix.julia-version }}

- uses: julia-actions/cache@e33b4bfa0ea7cd9caedd7cb82b0e36956ef40285 # v2
- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0

- name: Install hyperpolymath-internal Julia deps from git
# These hyperpolymath org-internal packages are NOT in any Julia
Expand Down
4 changes: 2 additions & 2 deletions src/organizing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ using Dates
export register_worksite, upsert_member, log_conversation

function register_worksite(employer, location, unit, headcount)
return Worksite(gensym("site"), employer, location, unit, headcount)
return Worksite(gensym("site"), employer, location, unit, headcount, nothing)
end

function upsert_member(site_id, id, status, role)
return MemberRecord(id, site_id, status, role, String[], now())
return MemberRecord(id, site_id, status, role, String[], now(), nothing)
end

function log_conversation(member_id, tags, sentiment, next_step)
Expand Down
Loading