mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 15:26:24 +07:00 
			
		
		
		
	Compare commits
	
		
			9 Commits
		
	
	
		
			master
			...
			t-dedah/ca
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3010f3bd47 | |||
| abb58eaf29 | |||
| 67408f6dab | |||
| 82f0974fd6 | |||
| 36aa59375f | |||
| 53812f9a6a | |||
| a90fbffdad | |||
| b65f98495c | |||
| e1165c0dec | 
							
								
								
									
										21
									
								
								.github/auto_assign.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								.github/auto_assign.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,21 @@ | |||||||
|  | # Set to true to add reviewers to pull requests | ||||||
|  | addReviewers: true | ||||||
|  |  | ||||||
|  | # Set to true to add assignees to pull requests | ||||||
|  | addAssignees: false | ||||||
|  |  | ||||||
|  | # A list of reviewers to be added to pull requests (GitHub user name) | ||||||
|  | reviewers: | ||||||
|  |   - anuragc617 | ||||||
|  |   - pallavx | ||||||
|  |   - pdotl | ||||||
|  |   - phantsure | ||||||
|  |   - kotewar | ||||||
|  |   - aparna-ravindra | ||||||
|  |   - tiwarishub | ||||||
|  |   - vsvipul | ||||||
|  |   - bishal-pdmsft | ||||||
|  |  | ||||||
|  | # A number of reviewers added to the pull request | ||||||
|  | # Set 0 to add all the reviewers (default: 0) | ||||||
|  | numberOfReviewers: 1 | ||||||
							
								
								
									
										20
									
								
								.github/workflows/add-reviewer-pr.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/add-reviewer-pr.yml
									
									
									
									
										vendored
									
									
								
							| @ -1,20 +0,0 @@ | |||||||
| name: Add Reviewer PR |  | ||||||
| on: |  | ||||||
|   pull_request_target: |  | ||||||
|     types: [opened] |  | ||||||
| jobs: |  | ||||||
|   run-action: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: Get current oncall |  | ||||||
|       id: oncall |  | ||||||
|       run: | |  | ||||||
|         echo "CURRENT=$(curl --request GET 'https://api.pagerduty.com/oncalls?include[]=users&schedule_ids[]=P5VG2BX&earliest=true' --header 'Authorization: Token token=${{ secrets.PAGERDUTY_TOKEN }}' --header 'Accept: application/vnd.pagerduty+json;version=2' --header 'Content-Type: application/json' | jq -r '.oncalls[].user.name')" >> $GITHUB_OUTPUT |  | ||||||
|      |  | ||||||
|     - name: Request Review |  | ||||||
|       run: | |  | ||||||
|         curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN}}" https://api.github.com/repos/${{github.repository}}/pulls/${{ github.event.pull_request.number}}/requested_reviewers -d '{"reviewers":["${{steps.oncall.outputs.CURRENT}}"]}' |  | ||||||
|          |  | ||||||
|     - name: Add Assignee |  | ||||||
|       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}}"]}'     |  | ||||||
							
								
								
									
										16
									
								
								.github/workflows/assign-issue.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								.github/workflows/assign-issue.yml
									
									
									
									
										vendored
									
									
								
							| @ -1,16 +0,0 @@ | |||||||
| name: Assign issue |  | ||||||
| on: |  | ||||||
|   issues: |  | ||||||
|     types: [opened] |  | ||||||
| jobs: |  | ||||||
|   run-action: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     steps: |  | ||||||
|     - name: Get current oncall |  | ||||||
|       id: oncall |  | ||||||
|       run: | |  | ||||||
|         echo "CURRENT=$(curl --request GET 'https://api.pagerduty.com/oncalls?include[]=users&schedule_ids[]=P5VG2BX&earliest=true' --header 'Authorization: Token token=${{ secrets.PAGERDUTY_TOKEN }}' --header 'Accept: application/vnd.pagerduty+json;version=2' --header 'Content-Type: application/json' | jq -r '.oncalls[].user.name')" >> $GITHUB_OUTPUT |  | ||||||
|      |  | ||||||
|     - name: add_assignees |  | ||||||
|       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}}"]}' |  | ||||||
							
								
								
									
										15
									
								
								.github/workflows/auto-assign-issues.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								.github/workflows/auto-assign-issues.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,15 @@ | |||||||
|  | name: Issue assignment | ||||||
|  |  | ||||||
|  | on: | ||||||
|  |     issues: | ||||||
|  |         types: [opened] | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |     auto-assign: | ||||||
|  |         runs-on: ubuntu-latest | ||||||
|  |         steps: | ||||||
|  |             - name: 'Auto-assign issue' | ||||||
|  |               uses: pozil/auto-assign-issue@v1.4.0 | ||||||
|  |               with: | ||||||
|  |                   assignees: anuragc617,pallavx,pdotl,phantsure,kotewar,tiwarishub,aparna-ravindra,vsvipul,bishal-pdmsft | ||||||
|  |                   numOfAssignee: 1 | ||||||
							
								
								
									
										10
									
								
								.github/workflows/auto-assign.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								.github/workflows/auto-assign.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,10 @@ | |||||||
|  | name: 'Auto Assign' | ||||||
|  | on: | ||||||
|  |   pull_request_target: | ||||||
|  |     types: [opened, ready_for_review] | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   add-reviews: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: kentaro-m/auto-assign-action@v1.2.1 | ||||||
		Reference in New Issue
	
	Block a user
	