-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HUDI-7438] Fix Azure CI report check with new issue comments
- Loading branch information
Showing
4 changed files
with
363 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
async function checkAzureCiStatus({ github, context, prNumber, latestCommitHash }) { | ||
console.log(`*** Checking Azure CI status of PR: ${prNumber} ${latestCommitHash}`); | ||
const botUsername = 'hudi-bot'; | ||
|
||
const comments = await github.rest.issues.listComments({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: prNumber, | ||
}); | ||
|
||
// Find the latest comment from hudi-bot containing the Azure CI report | ||
const botComments = comments.data.filter(comment => comment.user.login === botUsername); | ||
const lastComment = botComments.pop(); | ||
|
||
let status = 'pending'; | ||
let message = 'In progress'; | ||
let azureRunLink = ''; | ||
|
||
if (lastComment) { | ||
const reportPrefix = `${latestCommitHash} Azure: ` | ||
const successReportString = `${reportPrefix}[SUCCESS]` | ||
const failureReportString = `${reportPrefix}[FAILURE]` | ||
|
||
if (lastComment.body.includes(reportPrefix)) { | ||
if (lastComment.body.includes(successReportString)) { | ||
message = 'Successful on the latest commit'; | ||
status = 'success'; | ||
} else if (lastComment.body.includes(failureReportString)) { | ||
message = 'Failed on the latest commit'; | ||
status = 'failure'; | ||
} | ||
} | ||
|
||
const linkRegex = /\[[a-zA-Z]+\]\((https?:\/\/[^\s]+)\)/; | ||
const parts = lastComment.body.split(reportPrefix); | ||
const secondPart = parts.length > 1 ? parts[1] : ''; | ||
const match = secondPart.match(linkRegex); | ||
|
||
if (match) { | ||
azureRunLink = match[1]; | ||
} | ||
} | ||
|
||
console.log(`Status: ${status}`); | ||
console.log(`Azure Run Link: ${azureRunLink}`); | ||
console.log(`${message}`); | ||
|
||
return { status, message, azureRunLink }; | ||
} | ||
|
||
async function createCommitStatusForAzureCi({ github, context, prNumber, commitHash, state, azureRunLink, description }) { | ||
console.log(`--- Create commit status of PR based on Azure CI status: ${prNumber} ${commitHash} ${state}`); | ||
// Create or update the commit status for Azure CI | ||
await github.rest.repos.createCommitStatus({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
sha: commitHash, | ||
state: state, | ||
target_url: azureRunLink, | ||
description: description, | ||
context: 'Azure CI' | ||
}); | ||
} | ||
|
||
module.exports = { | ||
checkAzureCiStatus, | ||
createCommitStatusForAzureCi | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,54 @@ | ||
name: Label PR | ||
|
||
on: [ pull_request ] | ||
on: | ||
pull_request: | ||
types: [ opened, edited, reopened, synchronize ] | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
name: Label the PR size | ||
steps: | ||
- uses: codelytv/pr-size-labeler@v1 | ||
- name: Label PR size | ||
uses: actions/github-script@v7 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_label: 'size-xs' | ||
xs_max_size: '10' | ||
s_label: 'size-s' | ||
s_max_size: '100' | ||
m_label: 'size-m' | ||
m_max_size: '500' | ||
l_label: 'size-l' | ||
l_max_size: '1000' | ||
xl_label: 'size-xl' | ||
fail_if_xl: 'false' | ||
github_api_url: 'api.github.com' | ||
files_to_ignore: '' | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
const { data: prData } = await github.rest.pulls.get({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: prNumber, | ||
}); | ||
const additions = prData.additions; | ||
const deletions = prData.deletions; | ||
const totalChanges = additions + deletions; | ||
let label = ""; | ||
if (totalChanges < 10) { | ||
label = "size:XS"; | ||
} else if (totalChanges < 100) { | ||
label = "size:S"; | ||
} else if (totalChanges < 300) { | ||
label = "size:M"; | ||
} else if (totalChanges < 1000) { | ||
label = "size:L"; | ||
} else { | ||
label = "size:XL"; | ||
} | ||
// Apply the label | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: prNumber, | ||
labels: [label], | ||
}); | ||
console.log(`Total lines of changes: ${totalChanges}`); | ||
console.log(`Label: ${label}`); |
Oops, something went wrong.