mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-01-30 04:21:19 -08:00
chore: automate contributions
This commit is contained in:
parent
c30de4f788
commit
352eb454df
66
.github/workflows/contributors.yml
vendored
Normal file
66
.github/workflows/contributors.yml
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
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 👋
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
- name: Check and comment 👩🏾💻
|
||||
uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0
|
||||
with:
|
||||
github-token: ${{ secrets.GH_PAT }}
|
||||
script: |
|
||||
const { repo: { owner, repo } } = context;
|
||||
const pr = context.payload.pull_request;
|
||||
|
||||
if (pr.user.login === "JanDeDobbeleer") {
|
||||
console.log('No credit for maintainer, stop processing');
|
||||
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,
|
||||
});
|
32
.github/workflows/merge_contributions_pr.yml
vendored
Normal file
32
.github/workflows/merge_contributions_pr.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Merge contributions PR
|
||||
on:
|
||||
pull_request_target:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code 👋
|
||||
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
||||
- name: Check and merge ⛙
|
||||
uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0
|
||||
with:
|
||||
github-token: ${{ secrets.GH_PAT }}
|
||||
script: |
|
||||
const { repo: { owner, repo } } = context;
|
||||
const pr = context.payload.pull_request;
|
||||
|
||||
if (pr.user.id !== 46447321) {
|
||||
console.log('Not an all-contributors pull request');
|
||||
return;
|
||||
}
|
||||
|
||||
console.log(`Merging pull request: ${pr.html_url}`);
|
||||
await github.rest.pulls.merge({
|
||||
owner, repo,
|
||||
pull_number: pr.number,
|
||||
merge_method: "rebase",
|
||||
});
|
Loading…
Reference in a new issue