mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-03 18:52:15 +08:00 
			
		
		
		
	* refactor: refactor workflows contents. * add tool workflows. * update field. * fix: remove chat error. * Fix err. * fix error. * remove cn comment. * update workflows files. * update infra config. * move workflows.
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
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') &&
 | 
						|
      !contains(github.event.comment.user.login, 'openim-robot')
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    permissions:
 | 
						|
      issues: write
 | 
						|
    steps:
 | 
						|
      - name: Checkout code
 | 
						|
        uses: actions/checkout@v4
 | 
						|
 | 
						|
      - name: Assign the issue
 | 
						|
        run: |
 | 
						|
          export LETASE_MILESTONES=$(curl 'https://api.github.com/repos/$OWNER/$PEPO/milestones' | jq -r 'last(.[]).title')
 | 
						|
          gh issue edit ${{ github.event.issue.number }} --add-assignee "${{ github.event.comment.user.login }}"
 | 
						|
          gh issue edit ${{ github.event.issue.number }} --add-label "accepted"
 | 
						|
          gh issue comment $ISSUE --body "@${{ github.event.comment.user.login }} Glad to see you accepted this issue🤲, this issue has been assigned to you. I set the milestones for this issue to [$LETASE_MILESTONES](https://github.com/$OWNER/$PEPO/milestones), We are looking forward to your PR!"
 | 
						|
 | 
						|
        # gh issue edit ${{ github.event.issue.number }} --milestone "$LETASE_MILESTONES"
 | 
						|
        env:
 | 
						|
          GH_TOKEN: ${{ secrets.BOT_TOKEN }}
 | 
						|
          ISSUE: ${{ github.event.issue.html_url }}
 | 
						|
          OWNER: ${{ github.repository_owner }}
 | 
						|
          REPO: ${{ github.event.repository.name }}
 |