Skip to content

Move wslfiles

Move wslfiles #29

name: 'Move wslfiles'
run-name: 'Move wslfiles'
on:
push:
branches:
- main
paths:
- '.github/**'
- 'wslfiles/**'
- '!wslfiles/README.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
env:
targetBranchName: 'wslfiles'
jobs:
move-files:
runs-on: ubuntu-latest
name: ${{ github.workflow }}
steps:
- name: 'Checkout repository'
id: checkout-repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 'Move ${{ env.targetBranchName }} files'
id: move-branch-files
uses: ./.github/actions/templates/moveFiles
with:
targetBranchName: ${{ env.targetBranchName }}