From c7c70b06c15bd83363be529ecafdb5c1162a149c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Piotrowski?= Date: Fri, 4 Oct 2019 12:16:26 +0200 Subject: [PATCH] Add GitHub action for merging new apps --- .github/workflows/merge.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/merge.yml diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml new file mode 100644 index 0000000..1653d74 --- /dev/null +++ b/.github/workflows/merge.yml @@ -0,0 +1,14 @@ +on: + issue_comment: + types: [created] +name: Automatic application merge +jobs: + merge: + name: Merge + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Automatic Rebase + uses: flathub-actions/merge@master + env: + GITHUB_TOKEN: ${{ secrets.FLATHUBBOT_TOKEN }}