mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	ci-merge: remove use of deprecated pushedDate (#6676)
This commit is contained in:
		
							parent
							
								
									80033b84cb
								
							
						
					
					
						commit
						e5310b25d4
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		
							
								
								
									
										8
									
								
								.github/workflows/ci-merge.js
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/workflows/ci-merge.js
									
										
									
									
										vendored
									
									
								
							|  | @ -11,7 +11,7 @@ async function checkBaseChanges(github, context) { | |||
|         repository(name:$name, owner:$owner) { | ||||
|             ref(qualifiedName:$ref) { | ||||
|                 target { | ||||
|                     ... on Commit { id pushedDate oid } | ||||
|                     ... on Commit { id committedDate oid } | ||||
|                 } | ||||
|             } | ||||
|         } | ||||
|  | @ -22,9 +22,9 @@ async function checkBaseChanges(github, context) { | |||
|         ref: 'refs/heads/master', | ||||
|     }; | ||||
|     const result = await github.graphql(query, variables); | ||||
|     const pushedAt = result.repository.ref.target.pushedDate; | ||||
|     console.log(`Last commit pushed at ${pushedAt}.`); | ||||
|     const delta = new Date() - new Date(pushedAt); | ||||
|     const committedAt = result.repository.ref.target.committedDate; | ||||
|     console.log(`Last commit committed at ${committedAt}.`); | ||||
|     const delta = new Date() - new Date(committedAt); | ||||
|     if (delta <= DETECTION_TIME_FRAME) { | ||||
|         console.info('New changes detected, triggering a new build.'); | ||||
|         return true; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue