2022-11-27 03:46:01 -08:00
|
|
|
name: Contributors
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.event.pull_request.merged == true
|
|
|
|
steps:
|
|
|
|
- name: Checkout code 👋
|
2023-03-26 18:41:53 -07:00
|
|
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
|
2022-11-27 03:46:01 -08:00
|
|
|
- name: Check and comment 👩🏾💻
|
2023-04-06 18:02:52 -07:00
|
|
|
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
|
2022-11-27 03:46:01 -08:00
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GH_PAT }}
|
|
|
|
script: |
|
|
|
|
const { repo: { owner, repo } } = context;
|
|
|
|
const pr = context.payload.pull_request;
|
|
|
|
|
2022-12-01 23:03:49 -08:00
|
|
|
if (pr.user.id === 2492783 || pr.user.type === "Bot") {
|
2022-11-27 05:13:28 -08:00
|
|
|
console.log('No credit for maintainer/bot, stop processing');
|
2022-11-27 03:46:01 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await github.rest.pulls.listFiles({
|
|
|
|
owner, repo,
|
|
|
|
pull_number: pr.number
|
|
|
|
});
|
|
|
|
|
|
|
|
if (response.status !== 200) {
|
|
|
|
console.log('Could not fetch files');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var addContribution = function(arr, name, path, contribution) {
|
|
|
|
if (arr.indexOf(contribution) != -1) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (name.includes(path)) {
|
|
|
|
arr.push(contribution)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var contributions = [];
|
|
|
|
for (const file of response.data) {
|
|
|
|
const name = file.filename;
|
|
|
|
addContribution(contributions, name, 'themes/', 'design');
|
|
|
|
addContribution(contributions, name, 'src/', 'code');
|
|
|
|
addContribution(contributions, name, 'website/', 'doc');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contributions.length === 0) {
|
|
|
|
console.log('No relevant additions found');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const body = `@all-contributors please add @${pr.user.login} for ${contributions.join()}`;
|
|
|
|
|
|
|
|
console.log(`Adding comment: ${body}`);
|
|
|
|
await github.rest.issues.createComment({
|
|
|
|
owner, repo,
|
|
|
|
issue_number: pr.number,
|
|
|
|
body,
|
|
|
|
});
|