Skip to content

Test 26

Test 26 #10

Workflow file for this run

name: Bot response
on:
issues:
types: [opened, edited]
jobs:
docs_bot:
name: Generate automated response by docs bot
runs-on: ubuntu-latest
steps:
- name: Docs bot action
uses: espressif/docs-bot-action@master
with:
in_msg: ${{ github.event.issue.body }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_ISSUE_NUMBER: ${{ github.event.issue.number }}
DOCS_BOT_PREFIX_OUT_MSG: "Hi @${{ github.event.issue.user.login }}!\nBe aware that the following suggestions are generated by a bot."
dump:
runs-on: ubuntu-latest
steps:
- name: $github
run: echo "$GITHUB_CONTEXT"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}