-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: trigger ecosystem-ci by comment (#9887)
- Loading branch information
1 parent
9ac5075
commit 7c4ab51
Showing
1 changed file
with
95 additions
and
0 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,95 @@ | ||
name: ecosystem-ci trigger | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
trigger: | ||
runs-on: ubuntu-latest | ||
if: 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}`) | ||
const allowedUsers = new Set([ | ||
'yyx990803', | ||
'patak-dev', | ||
'antfu', | ||
'sodatea', | ||
'Shinigami92', | ||
'aleclarson', | ||
'bluwy', | ||
'poyoho', | ||
'sapphi-red', | ||
'ygj6', | ||
'Niputi' | ||
]) | ||
if (allowedUsers.has(user)) { | ||
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 }}/vite-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.replace(/^\/ecosystem-ci run/, '').trim() | ||
await github.rest.actions.createWorkflowDispatch({ | ||
owner: context.repo.owner, | ||
repo: 'vite-ecosystem-ci', | ||
workflow_id: 'ecosystem-ci-from-pr.yml', | ||
ref: 'main', | ||
inputs: { | ||
prNumber: '' + prData.num, | ||
branchName: prData.branchName, | ||
repo: prData.repo, | ||
suite: suite === '' ? '-' : suite | ||
} | ||
}) |