We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 640f7f2 commit a64e656Copy full SHA for a64e656
1 file changed
.github/workflows/strands-command.yml
@@ -70,6 +70,7 @@ jobs:
70
fetch-depth: 0
71
72
- name: Add strands-running label
73
+ continue-on-error: true
74
uses: actions/github-script@v8
75
with:
76
script: |
@@ -86,6 +87,10 @@ jobs:
86
87
88
89
90
+ // When dispatched from a fork, point API calls at the upstream repo
91
+ if (context.eventName === 'workflow_dispatch' && context.repo.owner !== 'aws') {
92
+ context.repo = { owner: 'aws', repo: 'agentcore-cli' };
93
+ }
94
const processInputs = require('./.github/scripts/javascript/process-inputs.cjs');
95
const inputs = {
96
issue_id: '${{ inputs.issue_id }}',
0 commit comments