mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Merge pull request #1077 from actions/pallavx-patch-1
Introduce add-to-project step for new issues/PRs & rename workflow files
This commit is contained in:
		@@ -14,3 +14,9 @@ jobs:
 | 
				
			|||||||
    - name: add_assignees
 | 
					    - name: add_assignees
 | 
				
			||||||
      run: |
 | 
					      run: |
 | 
				
			||||||
        curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.issue.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'
 | 
					        curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.issue.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    - uses: actions/add-to-project@v0.4.0
 | 
				
			||||||
 | 
					      name: Add to Project Board
 | 
				
			||||||
 | 
					      with:
 | 
				
			||||||
 | 
					        project-url: https://github.com/orgs/actions/projects/12                       
 | 
				
			||||||
 | 
					        github-token: ${{ secrets.CACHE_BOARD_TOKEN }}
 | 
				
			||||||
@@ -18,3 +18,9 @@ jobs:
 | 
				
			|||||||
    - name: Add Assignee
 | 
					    - name: Add Assignee
 | 
				
			||||||
      run: |
 | 
					      run: |
 | 
				
			||||||
        curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.pull_request.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'    
 | 
					        curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/issues/${{ github.event.pull_request.number}}/assignees -d '{"assignees":["${{steps.oncall.outputs.CURRENT}}"]}'    
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    - uses: actions/add-to-project@v0.4.0
 | 
				
			||||||
 | 
					      name: Add to Project Board
 | 
				
			||||||
 | 
					      with:
 | 
				
			||||||
 | 
					        project-url: https://github.com/orgs/actions/projects/12                       
 | 
				
			||||||
 | 
					        github-token: ${{ secrets.CACHE_BOARD_TOKEN }}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user