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