Skip to content
Merged
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/plugin_submission_orchestrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ jobs:
echo "Extracted user_id from PR title (masked)"
else
echo "is_web_submission=false" >> $GITHUB_OUTPUT
echo "user_id=" >> $GITHUB_OUTPUT
echo "user_id=2" >> $GITHUB_OUTPUT
fi

- name: Find PR author email for non-web submissions
Expand Down Expand Up @@ -928,7 +928,7 @@ jobs:
competition: "None",
model_type: "artificialsubject",
public: true,
user_id: (if $user_id != "" then $user_id else null end)
user_id: (if $user_id != "" then $user_id else "2" end)
}')
# Store PLUGIN_INFO in GITHUB_ENV for next step (contains email - will be masked by GitHub Actions)
echo "PLUGIN_INFO=${PLUGIN_INFO}" >> $GITHUB_ENV
Expand Down
Loading