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 d19d977 commit 686b04aCopy full SHA for 686b04a
1 file changed
.github/workflows/reusable-bot-autoassign.yml
@@ -44,9 +44,10 @@ jobs:
44
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
45
REPOSITORY: ${{ github.repository }}
46
GITHUB_EVENT_NAME: ${{ github.event_name }}
47
- run: >
+ BOT_COMMAND: ${{ inputs.bot_command }}
48
+ run: |
49
if [ -n "$GITHUB_EVENT_PATH" ]; then
- python openwisp-utils/.github/actions/bot-autoassign/__main__.py ${{ inputs.bot_command }} "$GITHUB_EVENT_PATH"
50
+ python openwisp-utils/.github/actions/bot-autoassign/__main__.py "$BOT_COMMAND" "$GITHUB_EVENT_PATH"
51
else
- python openwisp-utils/.github/actions/bot-autoassign/__main__.py ${{ inputs.bot_command }}
52
+ python openwisp-utils/.github/actions/bot-autoassign/__main__.py "$BOT_COMMAND"
53
fi
0 commit comments