fix: actions milestones auto (#640)
* fix: actions milestones auto Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add org server secret Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --------- Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>pull/645/head
parent
9db61becff
commit
00b4483065
@ -1,26 +1,26 @@
|
|||||||
name: Automatic Rebase
|
name: Assign issue to comment author
|
||||||
on:
|
on:
|
||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created]
|
types: [created]
|
||||||
jobs:
|
jobs:
|
||||||
rebase:
|
assign-issue:
|
||||||
name: Rebase
|
if: contains(github.event.comment.body, '/assign') || contains(github.event.comment.body, '/accept')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: >-
|
permissions:
|
||||||
github.event.issue.pull_request != '' &&
|
issues: write
|
||||||
(
|
|
||||||
contains(github.event.comment.body, '/rebase') ||
|
|
||||||
contains(github.event.comment.body, '/autosquash')
|
|
||||||
)
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the latest code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
|
||||||
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
- name: Assign the issue
|
||||||
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
run: |
|
||||||
- name: Automatic Rebase
|
export LETASE_MILESTONES=$(curl 'https://api.github.com/repos/kubecub/github-label-syncer/milestones' | jq -r 'last(.[]).title')
|
||||||
uses: cirrus-actions/rebase@1.8
|
gh issue edit ${{ github.event.issue.number }} --add-assignee "${{ github.event.comment.user.login }}"
|
||||||
with:
|
gh issue edit ${{ github.event.issue.number }} --add-label "triage/accepted"
|
||||||
autosquash: ${{ contains(github.event.comment.body, '/autosquash') || contains(github.event.comment.body, '/rebase-autosquash') }}
|
gh issue edit ${{ github.event.issue.number }} --milestone "$LETASE_MILESTONES"
|
||||||
|
gh issue comment $ISSUE --body "@${{ github.event.comment.user.login }} Glad to see you accepted this issue🤲, this issue has been assigned to you. I set the milestones for this issue to $LETASE_MILESTONES, We are looking forward to your PR!"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.REDBOT_GITHUB_TOKEN }}
|
||||||
|
ISSUE: ${{ github.event.issue.html_url }}
|
||||||
|
OWNER: ${{ github.repository_owner }}
|
||||||
|
REPO: ${{ github.event.repository.name }}
|
Loading…
Reference in new issue