Skip to content

Fix qlkube schema generation #544

Fix qlkube schema generation

Fix qlkube schema generation #544

Workflow file for this run

name: Greeting
on:
pull_request_target:
types:
- opened
jobs:
greeting:
name: Issue a greeting comment upon PR
runs-on: ubuntu-latest
steps:
- name: Issue the greeting comment
uses: peter-evans/create-or-update-comment@v2
with:
token: ${{ secrets.CI_TOKEN }}
issue-number: ${{ github.event.pull_request.number }}
body: |
Hi @${{ github.event.pull_request.user.login }}. Thanks for your PR.
I am @kingmakerbot.
You can interact with me issuing a **slash command** in the first line of a **comment**.
Currently, I understand the following commands:
* `/rebase`: Rebase this PR onto the master branch
* `/merge`: Merge this PR into the master branch
* `/hold`: Adds hold label to prevent merging with /merge
* `/unhold`: Removes the hold label to allow merging with /merge
* `/deploy-staging`: Deploy a staging environment to test this PR (the `build-all` flag enables user environments building)
* `/undeploy-staging`: Manually undeploy the staging environment
Make sure this PR appears in the **${{ github.event.repository.name }} changelog**, adding one of the following **labels**:
* `kind/breaking`: :boom: Breaking Change
* `kind/feature`: :rocket: New Feature
* `kind/bug`: :bug: Bug Fix
* `kind/cleanup`: :broom: Code Refactoring
* `kind/docs`: :memo: Documentation