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 b045f8e commit 58f923bCopy full SHA for 58f923b
.github/workflows/test-scenario.yml
@@ -21,7 +21,7 @@ jobs:
21
REPO_OWNER: dotnet
22
REPO_NAME: aspire-playground
23
GH_CLI_VERSION: 2.81.0
24
- GH_TOKEN: ${{ secrets.GH_PLAYGROUND_TOKEN }}
+ GH_PLAYGROUND_TOKEN: ${{ secrets.GH_PLAYGROUND_TOKEN }}
25
steps:
26
- name: Checkout repository
27
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -91,6 +91,9 @@ jobs:
91
echo "Creating agent task..."
92
PROMPT_FILE="${{ steps.check_prompt.outputs.prompt_file }}"
93
94
+ # Auth using the token
95
+ gh auth login --with-token <<< "$GH_PLAYGROUND_TOKEN"
96
+
97
# Create the agent task using stdin and capture the output
98
OUTPUT=$(cat "$PROMPT_FILE" | gh agent-task create \
99
--repo "${REPO_OWNER}/${REPO_NAME}" \
0 commit comments