Skip to content

Set npm as the package ecosystem for Dependabot #12

Set npm as the package ecosystem for Dependabot

Set npm as the package ecosystem for Dependabot #12

Workflow file for this run

name: Mirror to Organization
on:
push:
branches: [ "main", "dev", "patch-*" ]
workflow_dispatch:
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SYNC_TOKEN }}
- name: Mirror to Org
run: |
REMOTE_REPO="https://github.com/coffeescript-milkee/milkee.git"
git remote add target "$REMOTE_REPO"
git push --force --prune target "refs/remotes/origin/*:refs/heads/*"
git push --tags target