From 57b670adcf436cd0b44e1947cc63a005781e2e9f Mon Sep 17 00:00:00 2001 From: hokkung Date: Thu, 29 Aug 2024 13:45:50 +0700 Subject: [PATCH 1/2] feat/update-readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 6361078..4a72697 100644 --- a/readme.md +++ b/readme.md @@ -37,7 +37,7 @@ This project is implemented by applying clean code architecture. 1. install Go 2. Install Wire [Official-Site](https://github.com/google/wire) 3. Install Mockgen [Official-Site](https://github.com/golang/mock) - +4. Install GraphQL [Official-Site](https://gqlgen.com/getting-started) --- ## Getting Started 1. Start Admin, MySQL container From 9a93826556bac9c616262bb1bacf12077c55d2bb Mon Sep 17 00:00:00 2001 From: hokkung Date: Thu, 29 Aug 2024 14:05:42 +0700 Subject: [PATCH 2/2] fix --- .github/workflows/auto-assign.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index d79dd3c..baa40e2 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -13,11 +13,9 @@ jobs: uses: actions/github-script@v6 with: script: | - const { context } = require('@actions/github'); - await github.rest.issues.addAssignees({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - assignees: [context.actor], // Automatically assigns the PR author + assignees: [context.actor], });