Skip to content

Commit

Permalink
chore: test bot
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 committed Feb 2, 2024
1 parent 458d3f9 commit 67acc82
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 99 deletions.
99 changes: 0 additions & 99 deletions .github/workflows/build_android_apk.yaml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/build_bot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Bot

on:
issue_comment:
types: [created]

jobs:
dispatch_slash_command:
runs-on: ubuntu-latest
steps:
- uses: peter-evans/slash-command-dispatch@v4
with:
token: ${{ secrets.PAT }}
commands: build
static-args: |
ref=refs/pull/${{ github.event.issue.number }}/head
20 changes: 20 additions & 0 deletions .github/workflows/build_command.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build

on:
repository_dispatch:
types: [build-command]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: notify appflowy_builder
run: |
echo "${{ github.event.client_payload.slash_command.args.all }}"
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/AppFlowy-IO/AppFlowy-Builder/actions/workflows/84180856/dispatches \
-d '{"ref":"main","inputs":{"repo":"LucasXu0/AppFlowy","branch":${{ github.event.client_payload.slash_command.args.name.ref }},"build_name":"0.4.5"}}'

0 comments on commit 67acc82

Please sign in to comment.