Skip to content

gitsplit extension dir #6

gitsplit extension dir

gitsplit extension dir #6

Workflow file for this run

name: gitsplit
on:
push:
branches:
- main
- split
pull_request:
release:
types: [published]
create:
workflow_dispatch:
jobs:
gitsplit:
runs-on: ubuntu-latest
steps:
- name: checkout
run: git clone "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" "$GITHUB_WORKSPACE" && cd "$GITHUB_WORKSPACE"
- name: test-gitsplit-token
env:
GITSPLIT_SECRET: ${{ secrets.GITSPLIT_TOKEN }}
if: ${{ env.GITSPLIT_SECRET == '' }}
run: echo "GITSPLIT_TOKEN is not set"
- name: Split repositories
uses: docker://jderusse/gitsplit:latest
with:
args: gitsplit
env:
GH_TOKEN: ${{ secrets.GITSPLIT_TOKEN }}