39 lines
932 B
YAML
39 lines
932 B
YAML
|
name: Github Pull Request
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
paths-ignore:
|
||
|
- 'README.md'
|
||
|
- 'CONTRIBUTING.md'
|
||
|
|
||
|
- 'docs/**'
|
||
|
pull_request:
|
||
|
branches: [main]
|
||
|
paths-ignore:
|
||
|
- 'README.md'
|
||
|
- 'CONTRIBUTING.md'
|
||
|
- 'docs/**'
|
||
|
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions/setup-node@v3
|
||
|
- name: Create Pull Request
|
||
|
uses: peter-evans/create-pull-request@v5
|
||
|
with:
|
||
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||
|
commit-message: 'build: update distribution'
|
||
|
title: 'build: update distribution'
|
||
|
body: |
|
||
|
- Updates the distribution for changes on `main`
|
||
|
|
||
|
Auto-generated by [create-pull-request][1]
|
||
|
|
||
|
[1]: https://github.com/OpenIMSDK/Open-IM-Sever
|
||
|
branch: 'bot/update-distribution'
|