Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

feat: update submodules and docs #1

feat: update submodules and docs

feat: update submodules and docs #1

Workflow file for this run

name: Automated Pull Request
on:
push:
branches-ignore:
- main
- master
jobs:
auto-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: 'Auto PR: ${{ github.ref_name }}'
body: |
Automated Pull Request from branch: ${{ github.ref_name }}
Changes included in this PR:
${{ github.event.head_commit.message }}
base: main
branch: ${{ github.ref_name }}
labels: automated-pr
draft: false