We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38dd29 commit 736d9e0Copy full SHA for 736d9e0
.github/workflows/deploy-pre-chatbot.yml
@@ -62,15 +62,15 @@ jobs:
62
const branch = pr.data.head.ref; // This is the branch name of the PR
63
console.log("PR branch:", branch);
64
65
- return { branch: branch };
66
- result-encoding: json
+ return branch;
+ result-encoding: string
67
68
69
# Step 4: Debug PR Branch
70
- name: Debug PR Branch
71
if: steps.check_command.outputs.valid == 'true'
72
run: |
73
- echo "Branch: ${{ steps.pr_details.outputs.branch }}"
+ echo "Branch: ${{ steps.pr_details.outputs.result }}"
74
75
# Step 5: Trigger Deploy Workflow
76
- name: Trigger Deploy Workflow
0 commit comments