From 65f10694b318ff77f0e62a6bb717920c5597e9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20Da=C3=9Fler?= Date: Tue, 7 Jan 2025 20:09:56 +0100 Subject: [PATCH] Created test action --- actions/manual.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 actions/manual.yaml diff --git a/actions/manual.yaml b/actions/manual.yaml new file mode 100644 index 0000000..e258cd9 --- /dev/null +++ b/actions/manual.yaml @@ -0,0 +1,27 @@ +name: Test +on: + push: + pull_request: + issue_comment: + +jobs: + build: + name: Build + runs-on: ubuntu-latest + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run build' || github.event.comment.body == '!actions run all' }} + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Run + run: | + echo Tada! + test: + name: Test + runs-on: ubuntu-latest + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run test' || github.event.comment.body == '!actions run all' }} + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Run + run: | + echo Moaar test! \ No newline at end of file