You've already forked PythonLib
mirror of
https://github.com/lifebottle/PythonLib.git
synced 2026-02-13 15:25:50 -08:00
21 lines
257 B
YAML
21 lines
257 B
YAML
|
|
name: refreshRepo
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
repoName:
|
|
jobs:
|
|
|
|
repoBasic:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ../$repoName
|
|
steps:
|
|
|
|
- name: Refresh repo
|
|
run:
|
|
git pull
|
|
|