Skip to content

Merge pull request #341 from CertificationSurya/master #1

Merge pull request #341 from CertificationSurya/master

Merge pull request #341 from CertificationSurya/master #1

Workflow file for this run

name: Auto sync forked repo
on:
schedule:
- cron: '55 23 * * *' # runs at 11:55 pm
push:
branches:
- master
env:
DRY_RUN: false
REPOSITORIES: simranlotey/programs
WORKFLOW_FILES: |
jobs:
Github_Workflow_Sync:
runs-on: ubuntu-latest
steps:
- name: Fetching Local Repository
uses: actions/checkout@master
- name: Running Workflow Sync
uses: varunsridharan/action-github-workflow-sync@main
with:
DRY_RUN: ${{ env.DRY_RUN }}
REPOSITORIES: ${{ env.REPOSITORIES }}
WORKFLOW_FILES: ${{ env.WORKFLOW_FILES }}
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}