diff --git a/.github/workflows/slashcommands.yml b/.github/workflows/slashcommands.yml new file mode 100644 index 000000000..a7edd0027 --- /dev/null +++ b/.github/workflows/slashcommands.yml @@ -0,0 +1,14 @@ +name: Slash Command Dispatch +on: + issue_comment: + types: [created] +jobs: + slashCommandDispatch: + runs-on: ubuntu-latest + steps: + - name: Slash Command Dispatch + uses: peter-evans/slash-command-dispatch@v3 + with: + token: ${{ secrets.PAT }} + commands: | + test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..384e475c3 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: blacktest +on: + repository_dispatch: + types: [test-command] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: psf/black@stable \ No newline at end of file