-
Notifications
You must be signed in to change notification settings - Fork 2
29 lines (26 loc) · 818 Bytes
/
test.yml
File metadata and controls
29 lines (26 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
name: Manual test run
on:
workflow_dispatch:
inputs:
bot_query:
description: Pass this message to the bot.
required: true
jobs:
manual_run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run action
if: ${{ github.repository_owner == 'espressif' }}
uses: ./
env:
# the secrets in this repository are for testing purposes only and are not the same as in repository the
# action is deployed
BOT_API_KEY: ${{ secrets.BOT_API_KEY }}
BOT_INTEGRATION_ID: ${{ secrets.BOT_INTEGRATION_ID }}
BOT_API_ENDPOINT: ${{ secrets.BOT_API_ENDPOINT }}
with:
in_msg: ${{ github.event.inputs.bot_query }}
github_comments: false