Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Feb 3, 2026

The "Admin | Set app quarantine status" flow fails with WorkflowOperationParametersRuntimeMissingValue when processing apps without an owner. The trigger monitors admin_appisquarantined changes but doesn't include _admin_appowner_value in its output.

Changes

  • Get_App action: Added _admin_appowner_value to $select clause
  • Get_Maker action: Changed recordId to use @outputs('Get_App') instead of @triggerOutputs()
  • sendTo action: Configured to run on Get_Maker success/skip/fail; falls back to admin email when maker unavailable
  • preferredLanguage action: Enhanced null handling with or(equals(...), empty(...)) check

Example

// Get_Maker recordId parameter
- "recordId": "@triggerOutputs()?['body/_admin_appowner_value']"
+ "recordId": "@outputs('Get_App')?['body/_admin_appowner_value']"

// sendTo runAfter configuration
"runAfter": {
  "Get_Maker": [
-   "Succeeded"
+   "Succeeded", "Skipped", "Failed"
  ]
}

Flow now continues execution instead of failing when app owner is null or missing.

Original prompt

This section details on the original issue you should resolve

<issue_title>[CoE Starter Kit - BUG] ISSUE TITLE Admin | Set app quarantine status, Admin | Sync Template v3 (Flow Action Details)</issue_title>
<issue_description>### Does this bug already exist in our backlog?

  • I have checked and confirm this is a new bug.

Describe the issue

Flow "Admin | Set app quarantine status" is failing with error WorkflowOperationParametersRuntimeMissingValue. The 'inputs.parameters' of workflow operation 'Get_Maker' of type 'OpenApiConnection' is not valid. Error details: The resolved string values for the following parameters are invalid; they may not be null or empty: 'recordId'

Image

Expected Behavior

No response

What solution are you experiencing the issue with?

Core

What solution version are you using?

4.50.8

What app or flow are you having the issue with?

Admin | Set app quarantine status

What method are you using to get inventory and telemetry?

None

Steps To Reproduce

No response

Anything else?

No response</issue_description>

<agent_instructions>Need troubleshoot why the app owner is null or empty</agent_instructions>

Comments on the Issue (you are @copilot in this section)

Custom agent used: CoE Custom Agent
Specialized agent for triaging and fixing issues in the CoE Starter Kit. Always consult the official CoE docs and the team’s SharePoint notes first, then mine prior GitHub issues and the CoE Common Responses playbook.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Co-authored-by: mohamrizwa <220306360+mohamrizwa@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix admin flow for setting app quarantine status Fix Get_Maker failure when app owner is null in quarantine flow Feb 3, 2026
Copilot AI requested a review from mohamrizwa February 3, 2026 06:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[CoE Starter Kit - BUG] ISSUE TITLE Admin | Set app quarantine status, Admin | Sync Template v3 (Flow Action Details)

2 participants