mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
ci: add ecosystem-ci pr comment trigger (#22239)
This commit is contained in:
parent
6c517e919c
commit
6a3cfb1bc9
93
.github/workflows/ecosystem-ci-trigger.yml
vendored
Normal file
93
.github/workflows/ecosystem-ci-trigger.yml
vendored
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
name: ecosystem-ci trigger
|
||||||
|
|
||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
trigger:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.repository == 'nuxt/nuxt' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/ecosystem-ci run')
|
||||||
|
steps:
|
||||||
|
- uses: actions/github-script@v6
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const user = context.payload.sender.login
|
||||||
|
console.log(`Validate user: ${user}`)
|
||||||
|
|
||||||
|
let hasTriagePermission = false
|
||||||
|
try {
|
||||||
|
const { data } = await github.rest.repos.getCollaboratorPermissionLevel({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
username: user,
|
||||||
|
});
|
||||||
|
hasTriagePermission = data.user.permissions.triage
|
||||||
|
} catch (e) {
|
||||||
|
console.warn(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasTriagePermission) {
|
||||||
|
console.log('Allowed')
|
||||||
|
await github.rest.reactions.createForIssueComment({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
comment_id: context.payload.comment.id,
|
||||||
|
content: '+1',
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
console.log('Not allowed')
|
||||||
|
await github.rest.reactions.createForIssueComment({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
comment_id: context.payload.comment.id,
|
||||||
|
content: '-1',
|
||||||
|
})
|
||||||
|
throw new Error('not allowed')
|
||||||
|
}
|
||||||
|
- uses: actions/github-script@v6
|
||||||
|
id: get-pr-data
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
console.log(`Get PR info: ${context.repo.owner}/${context.repo.repo}#${context.issue.number}`)
|
||||||
|
const { data: pr } = await github.rest.pulls.get({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo,
|
||||||
|
pull_number: context.issue.number
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
num: context.issue.number,
|
||||||
|
branchName: pr.head.ref,
|
||||||
|
repo: pr.head.repo.full_name
|
||||||
|
}
|
||||||
|
- id: generate-token
|
||||||
|
uses: tibdex/github-app-token@v1
|
||||||
|
with:
|
||||||
|
app_id: ${{ secrets.ECOSYSTEM_CI_GITHUB_APP_ID }}
|
||||||
|
private_key: ${{ secrets.ECOSYSTEM_CI_GITHUB_APP_PRIVATE_KEY }}
|
||||||
|
repository: "${{ github.repository_owner }}/ecosystem-ci"
|
||||||
|
- uses: actions/github-script@v6
|
||||||
|
id: trigger
|
||||||
|
env:
|
||||||
|
COMMENT: ${{ github.event.comment.body }}
|
||||||
|
with:
|
||||||
|
github-token: ${{ steps.generate-token.outputs.token }}
|
||||||
|
result-encoding: string
|
||||||
|
script: |
|
||||||
|
const comment = process.env.COMMENT.trim()
|
||||||
|
const prData = ${{ steps.get-pr-data.outputs.result }}
|
||||||
|
|
||||||
|
const suite = comment.split('\n')[0].replace(/^\/ecosystem-ci run/, '').trim()
|
||||||
|
|
||||||
|
await github.rest.actions.createWorkflowDispatch({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: 'ecosystem-ci',
|
||||||
|
workflow_id: 'ecosystem-ci-from-pr.yml',
|
||||||
|
ref: 'main',
|
||||||
|
inputs: {
|
||||||
|
prNumber: '' + prData.num,
|
||||||
|
branchName: prData.branchName,
|
||||||
|
repo: prData.repo,
|
||||||
|
suite: suite === '' ? '-' : suite
|
||||||
|
}
|
||||||
|
})
|
2
.github/workflows/release-pr.yml
vendored
2
.github/workflows/release-pr.yml
vendored
@ -13,7 +13,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release-pr:
|
release-pr:
|
||||||
if: ${{ github.event.issue.pull_request && github.event.comment.body == '/trigger release' }}
|
if: github.repository == 'nuxt/nuxt' && github.event.issue.pull_request && github.event.comment.body == '/trigger release'
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
Loading…
Reference in New Issue
Block a user