diff --git a/.circleci/config.yml b/.circleci/config.yml index c108c8e..93ffc2a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,6 +44,13 @@ jobs: - .circleci - front workflows: - front: - jobs: - - client-test \ No newline at end of file + playground: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - node/test: + # This is the node version to use for the `cimg/node` tag + # Relevant tags can be found on the CircleCI Developer Hub + # https://circleci.com/developer/images/image/cimg/node + version: '16.10' + # If you are using yarn, change the line below from "npm" to "yarn" + pkg-manager: yarn diff --git a/.github/workflows/auto-comment.yml b/.github/workflows/auto-comment.yml new file mode 100644 index 0000000..59c48a1 --- /dev/null +++ b/.github/workflows/auto-comment.yml @@ -0,0 +1,18 @@ +name: Auto Comment +on: [issues, pull_request] +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/auto-comment@v1 + with: + GITHUB_TOKEN: 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 + issuesOpened: | + 👋 @{{ author }} + Thank you for raising an issue. We will will investigate into the matter and get back to you as soon as possible. + Please make sure you have given us as much context as possible. + + pullRequestOpened: | + 👋 @{{ author }} + Thank you for raising your pull request. + Please make sure you have followed our contributing guidelines. We will review it as soon as possible \ No newline at end of file