mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-19 09:24:04 -08:00
33 lines
933 B
YAML
33 lines
933 B
YAML
|
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",
|
||
|
});
|