mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
feat: set git cherry pick and Milestone (#2131)
This commit is contained in:
parent
c50b787c58
commit
f52a4fe7e5
4
.github/workflows/bot-auto-cherry-pick.yml
vendored
4
.github/workflows/bot-auto-cherry-pick.yml
vendored
@ -25,6 +25,7 @@ jobs:
|
|||||||
- name: Comment cherry-pick command
|
- name: Comment cherry-pick command
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
|
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
const pr = context.payload.pull_request;
|
const pr = context.payload.pull_request;
|
||||||
if (!pr.merged) {
|
if (!pr.merged) {
|
||||||
@ -63,5 +64,4 @@ jobs:
|
|||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
issue_number: pr.number,
|
issue_number: pr.number,
|
||||||
body: cherryPickCmd
|
body: cherryPickCmd
|
||||||
});
|
});
|
||||||
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
6
.github/workflows/milestone.yml
vendored
6
.github/workflows/milestone.yml
vendored
@ -41,6 +41,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/github-script@v7 # v6
|
- uses: actions/github-script@v7 # v6
|
||||||
with:
|
with:
|
||||||
|
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
if (!context.payload.pull_request.merged) {
|
if (!context.payload.pull_request.merged) {
|
||||||
console.log('PR was not merged, skipping.');
|
console.log('PR was not merged, skipping.');
|
||||||
@ -56,9 +57,10 @@ jobs:
|
|||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
state: 'open',
|
state: 'open',
|
||||||
sort: 'due_on',
|
sort: 'title',
|
||||||
direction: 'asc'
|
direction: 'desc'
|
||||||
})
|
})
|
||||||
|
|
||||||
if (milestones.data.length === 0) {
|
if (milestones.data.length === 0) {
|
||||||
console.log('There are no milestones, skipping.');
|
console.log('There are no milestones, skipping.');
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user