mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
This commit adds three templates for issue creation, specifically for bug reports, feature requests, and help wanted. The templates contain fields for the user to fill out relevant information such as system environment, browser, bug description, expected behavior, recurrence steps, proposed solution, and additional information. These templates aim to provide a standardized way of submitting issues and help ensure that necessary information is included in the issue report.
33 lines
740 B
YAML
33 lines
740 B
YAML
name: Dependabot Auto Merge
|
|
on:
|
|
pull_request_target:
|
|
types: [labeled, edited]
|
|
|
|
jobs:
|
|
merge:
|
|
if: contains(github.event.pull_request.labels.*.name, 'dependencies')
|
|
name: Dependabot Auto Merge
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 7
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Install deps
|
|
run: pnpm install
|
|
|
|
- name: Merge
|
|
uses: ahmadnassri/action-dependabot-auto-merge@v2
|
|
with:
|
|
command: merge
|
|
target: minor
|
|
github-token: ${{ secrets.GH_TOKEN }}
|