missing dependencies #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Reply Instructions | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
issue_created: | |
# This job only runs for issue comments | |
name: Issue Create | |
if: ${{ !github.event.issue.pull_request }} | |
runs-on: issues-node | |
steps: | |
- name: Checkout out Repo | |
uses: actions/checkout@v3 | |
- name: Reply when Issue Created | |
run: | | |
echo "Issue $NUMBER Created, Request NeuralChatBot for ${{ github.event.issue.user.login }}" | |
python ${{ github.workspace }}/.github/workflows/script/ask_neuralchat.py --stage "create" | |
env: | |
NUMBER: ${{ github.event.issue.number }} | |
TOKEN: ${{ vars.TOKEN }} | |
no_proxy: "intel.com,.intel.com,localhost,127.0.0.1" | |
NEURALCHAT_SERVER: ${{ vars.NEURALCHAT_SERVER }} | |
maintain_list: ${{ vars.developer_list }} |