I am working with GitHub actions and before it takes an action I want it to confirm with the user the steps it intends to take.
ie user says “Rebase workingBranch on to main” the GPT makes a pretty good effort but could result in some strange behavior or loss of data.
My hope was to have the GPT list out the plant of actions as a upfront guide to what actions it might take.
It seems that regardless of how the prompt is written if a prompt from the user contains something related to a GitHub action. The action is ran before the custom GPT instructions.I’m working with GitHub Actions and want to implement a safeguard where GPT confirms with the user the steps it intends to execute before performing any action. For example, if a user inputs something like “Rebase workingBranch onto main,” GPT generally handles this well but could occasionally cause unexpected behaviors or data loss.
Ideally, GPT would clearly outline its planned actions upfront, allowing the user to review and confirm them first. However, I’ve encountered an issue where GitHub-related actions mentioned by the user prompt immediate execution, bypassing any custom GPT confirmation instructions.
At a minimum, it seems essential that if an operation will remotely modify or perform actions (especially potentially destructive ones), GPT should first clearly communicate this to the user, particularly if it’s not just a read-only operation.
I’ve attempted prompts like this:
CRITICAL SYSTEM INSTRUCTIONS:
- Always ask for the GitHub username.
- Summarize the planned steps clearly and explicitly ask for user confirmation before proceeding.
- Provide an option for users to bypass confirmation for future GitHub actions.
<instructions>
<criticalSystemInstructions>
<githubActions api="api.github.com">
<step>
If the user requests any GitHub action:
1. Request GitHub username.
2. Outline steps to be taken and explicitly ask for confirmation.
3. Offer an option to skip future confirmations.
</githubActions>
Despite clear instructions, whenever a prompt includes GitHub-related keywords, the action executes immediately, bypassing the intended confirmation workflow.
Does anyone have suggestions on how I can refine my prompts or configure GPT to strictly enforce confirmation before executing GitHub actions?
Thank you!