Skip to content

chore(deps-dev): Bump @types/node from 26.1.1 to 26.1.2 (#129) #260

chore(deps-dev): Bump @types/node from 26.1.1 to 26.1.2 (#129)

chore(deps-dev): Bump @types/node from 26.1.1 to 26.1.2 (#129) #260

Workflow file for this run

name: Sync next With main
permissions:
contents: read
on:
push:
branches:
- main
workflow_dispatch:
jobs:
sync:
name: Sync
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout next Branch
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }}
ref: next
- name: Install SSH Signing Key
run: |
mkdir -p ${{ runner.temp }}
echo "${{ secrets.SSH_SIGNING_KEY }}" > ${{ runner.temp }}/signing_key
chmod 0700 ${{ runner.temp }}/signing_key
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Set Up Git Config
run: |
git config user.name "Raboneko"
git config user.email "raboneko@fyralabs.com"
git config gpg.format "ssh"
git config user.signingkey "${{ runner.temp }}/signing_key"
git config --global merge.ours.driver true
git config --global commit.gpgsign true
- name: Merge main Into next
env:
GITHUB_TOKEN: ${{ secrets.MERGE_TOKEN }}
run: |
git fetch origin main
git merge --no-edit origin/main
git push origin next