From ecc33128220bdb20dc813b484d5374a9bdd26d40 Mon Sep 17 00:00:00 2001 From: extremeheat Date: Sun, 2 Jul 2023 18:53:28 -0400 Subject: [PATCH] Add commands workflow (#727) * Create commands.yml * Update commands.yml to use GITHUB TOKEN for test * Update commands.yml * Update commands.yml * Fix install and lint commands folder --- .github/workflows/commands.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/commands.yml diff --git a/.github/workflows/commands.yml b/.github/workflows/commands.yml new file mode 100644 index 000000000..3eba69eba --- /dev/null +++ b/.github/workflows/commands.yml @@ -0,0 +1,22 @@ +name: Repo Commands + +on: + issue_comment: # Handle comment commands + types: [created] + pull_request: # Handle renamed PRs + types: [edited] + +jobs: + comment-trigger: + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v3 + - name: Run command handlers + uses: PrismarineJS/prismarine-repo-actions@master + with: + # NOTE: You must specify a Personal Access Token (PAT) with repo access here. While you can use the default GITHUB_TOKEN, actions taken with it will not trigger other actions, so if you have a CI workflow, commits created by this action will not trigger it. + token: ${{ secrets.PAT_PASSWORD }} + # See `Options` section below for more info on these options + install-command: cd tools/js && npm install + /fixlint.fix-command: cd tools/js && npm run fix