mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-07-04 01:28:17 +08:00
* refactor(changelog): modernize generator and workflows * test(core): use stable Go in build test workflow * refactor(core): use golang alpine base image * fix(build): limit docker compose parallelism * refactor(build): inline compose build logic * fix(core): reorder Dockerfile ARG declarations
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: User First Interaction
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
pull_request:
|
|
branches: [main]
|
|
types: [opened]
|
|
|
|
jobs:
|
|
check_for_first_interaction:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7.0.0
|
|
- uses: actions/first-interaction@v3.1.0
|
|
with:
|
|
repo_token: ${{ secrets.BOT_TOKEN }}
|
|
pr_message: |
|
|
Hello! Thank you for your contribution.
|
|
|
|
If you are fixing a bug, please reference the issue number in the description.
|
|
|
|
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.
|
|
|
|
[Join slack 🤖](https://join.slack.com/t/openimsdk/shared_invite/zt-2ijy1ys1f-O0aEDCr7ExRZ7mwsHAVg9A) to connect and communicate with our developers.
|
|
|
|
Please leave your information in the [✨ discussions](https://github.com/orgs/OpenIMSDK/discussions/426), we expect anyone to join OpenIM developer community.
|
|
|
|
issue_message: |
|
|
Hello! Thank you for filing an issue.
|
|
|
|
If this is a bug report, please include relevant logs to help us debug the problem.
|
|
|
|
[Join slack 🤖](https://join.slack.com/t/openimsdk/shared_invite/zt-2ijy1ys1f-O0aEDCr7ExRZ7mwsHAVg9A) to connect and communicate with our developers.
|
|
continue-on-error: true
|