Skip to content

ci: Update dependabot #17

ci: Update dependabot

ci: Update dependabot #17

Workflow file for this run

name: Sync with Glitch
on:
push:
branches:
- main
permissions:
contents: read
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Git
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Config remote
run: |
git remote remove origin
git remote add origin ${{ secrets.GLITCH_GIT_URL }}
- name: Push to Glitch
run: |
git push -u origin main --force