build(deps): bump next from 14.2.15 to 15.0.0 #17
Workflow file for this run
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
name: Auto-label PR based on file paths | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Label PR based on changes | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const prFiles = await github.rest.pulls.listFiles({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number | |
}); | |
const labelsToColor = { | |
main: 'f66a0a', // Orange | |
'common-components': '1f77b4', // Blue | |
layout: '8c564b', // Brown | |
service: '2ca02c', // Green | |
styles: '9467bd', // Purple | |
content: 'ffdd57', // Yellow | |
types: 'd62728', // Red | |
}; | |
const labels = new Set(); | |
prFiles.data.forEach(file => { | |
if (file.filename.startsWith('src/app')) { | |
labels.add('main'); | |
} | |
if (file.filename.startsWith('src/components/layout')) { | |
labels.add('layout'); | |
} | |
if (file.filename.startsWith('src/components/common')) { | |
labels.add('common-components'); | |
} | |
if (file.filename.startsWith('src/service')) { | |
labels.add('service'); | |
} | |
if (file.filename.startsWith('src/styles')) { | |
labels.add('styles'); | |
} | |
if (file.filename.startsWith('src/posts')) { | |
labels.add('content'); | |
} | |
if (file.filename.startsWith('src/types.d.ts')) { | |
labels.add('types'); | |
} | |
}); | |
if (labels.size > 0) { | |
for (const label of labels) { | |
try { | |
// Check if the label exists | |
await github.rest.issues.getLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: label | |
}); | |
} catch (error) { | |
// If label doesn't exist, create it with the specified color | |
await github.rest.issues.createLabel({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: label, | |
color: labelsToColor[label] || 'b0b0b0', // Use default gray if no color specified | |
}); | |
} | |
} | |
// Add labels to the PR | |
await github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: Array.from(labels) | |
}); | |
} |