新增PathGroup机制,解决多个path多个refD设置比较困难的问题 #13101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🎉 Rebase | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
rebase: | |
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- uses: wow-actions/use-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- uses: cirrus-actions/rebase@master | |
env: | |
GITHUB_TOKEN: ${{ env.BOT_TOKEN }} |