Skip to content

debug: debuging message response #85

debug: debuging message response

debug: debuging message response #85

Workflow file for this run

# .github/workflows/bot-ci.yml
name: Bot CI Pipeline
on:
push:
paths:
- "bot/**"
# pull_request:
# paths:
# - "bot/**"
jobs:
lint:
uses: ./.github/workflows/lint.yml
with:
app: "bot"
test:
uses: ./.github/workflows/test.yml
with:
app: "bot"
build-push:
needs: [lint, test]
uses: ./.github/workflows/build-push.yml
with:
app: "bot"
context: "./bot"
dockerfile: "./bot/Dockerfile"