update workflow

This commit is contained in:
taskylizard 2024-06-03 07:21:28 +00:00
parent 1ad9417550
commit b5b53c0dce
No known key found for this signature in database
GPG Key ID: 1820131ED1A24120

View File

@ -27,13 +27,13 @@ jobs:
with:
script: |
const prNumber = context.payload.pull_request.number;
const labels = await github.issues.listLabelsOnIssue({
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
});
const hasCoreLabel = labels.data.some(label => label.name === 'core');
const hasCoreLabel = labels.some(label => label.name === 'core');
return hasCoreLabel;
- name: Auto-assign to PR