Skip to content

feat: added issue templates #4

feat: added issue templates

feat: added issue templates #4

Workflow file for this run

name: Sync Develop with Main
on:
push:
branches:
- main
jobs:
sync-branches:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: develop
fetch-depth: 0
token: ${{ secrets.SYNC_TOKEN }}
- name: Set up Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Merge main into develop
run: |
git merge origin/main
git push origin develop