From 36e202531bc2905fe1c30176bdffc30be9cead33 Mon Sep 17 00:00:00 2001 From: OpenIM Bot <124379614+kubbot@users.noreply.github.com> Date: Sun, 23 Jul 2023 12:59:06 +0800 Subject: [PATCH 1/2] Update and rename golangci-link.yml to golangci-lint.yml (#637) --- .github/workflows/{golangci-link.yml => golangci-lint.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{golangci-link.yml => golangci-lint.yml} (95%) diff --git a/.github/workflows/golangci-link.yml b/.github/workflows/golangci-lint.yml similarity index 95% rename from .github/workflows/golangci-link.yml rename to .github/workflows/golangci-lint.yml index c740afff7..adf33d8d4 100644 --- a/.github/workflows/golangci-link.yml +++ b/.github/workflows/golangci-lint.yml @@ -17,8 +17,8 @@ name: OpenIM golangci-lint on: push: branches: [main] -# pull_request: -# branches: [main] + pull_request: + branches: [main] jobs: golangci: name: lint @@ -48,4 +48,4 @@ jobs: # only-new-issues: true # Optional:The mode to install golangci-lint. It can be 'binary' or 'goinstall'. - install-mode: "goinstall" \ No newline at end of file + install-mode: "goinstall" From 9db61becffcd748e88f70c4785f60dfaeda1dc52 Mon Sep 17 00:00:00 2001 From: Xinwei Xiong <86140903+cubxxw@users.noreply.github.com> Date: Sun, 23 Jul 2023 18:47:42 +0800 Subject: [PATCH 2/2] fix: actions milestones auto (#638) * fix: actions milestones auto Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * fix: actions milestones auto Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --- .github/workflows/auto-assign-issue.yml | 25 ++++++++++++++++++++++++ .github/workflows/help-comment-issue.yml | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/auto-assign-issue.yml diff --git a/.github/workflows/auto-assign-issue.yml b/.github/workflows/auto-assign-issue.yml new file mode 100644 index 000000000..66b30c219 --- /dev/null +++ b/.github/workflows/auto-assign-issue.yml @@ -0,0 +1,25 @@ +name: Assign issue to comment author +on: + issue_comment: + types: [created] + +jobs: + assign-issue: + if: contains(github.event.comment.body, '/assign') || contains(github.event.comment.body, '/accept') + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Assign the issue + run: | + gh issue edit ${{ github.event.issue.number }} --add-assignee "${{ github.event.comment.user.login }}" + gh issue edit ${{ github.event.issue.number }} --add-label "triage/accepted" + gh issue comment $ISSUE --body "@${{ github.event.comment.user.login }}, this issue has been assigned to you. We are looking forward to your PR!" + env: + GH_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} + ISSUE: ${{ github.event.issue.html_url }} + OWNER: ${{ github.repository_owner }} + REPO: ${{ github.event.repository.name }} \ No newline at end of file diff --git a/.github/workflows/help-comment-issue.yml b/.github/workflows/help-comment-issue.yml index b1414d7c2..5f52e638f 100644 --- a/.github/workflows/help-comment-issue.yml +++ b/.github/workflows/help-comment-issue.yml @@ -18,4 +18,4 @@ jobs: body: | This issue is available for anyone to work on. **Make sure to reference this issue in your pull request.** :sparkles: Thank you for your contribution! :sparkles: [Join slack 🤖](https://join.slack.com/t/openimsdk/shared_invite/zt-1tmoj26uf-_FDy3dowVHBiGvLk9e5Xkg) to connect and communicate with our developers. - If you wish to accept this assignment, please leave a comment in the comments section: `/accept`.🎯 + If you wish to accept this assignment, please leave a comment in the comments section: `/accept`.🎯 \ No newline at end of file