add clone workflow #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clone Release | |
on: | |
# kick off the job on demand | |
workflow_dispatch: | |
# and run on a schedule every 12 hours | |
schedule: | |
- cron: "* */12 * * *" | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Release Clone | |
uses: andrewthetechie/gha-clone-releases@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
src_repo: Huddle01/shinigami |