Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
For CI/CD
  • Loading branch information
TJ2005 authored Oct 20, 2024
1 parent 9d89694 commit 4670bd2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pull on GitHub Repo Update

on:
push:
branches:
- public # Adjust this to the branch you want to track

jobs:
pull_repo:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Pull latest changes
run: |
git pull public public # Replace 'main' with your branch name

0 comments on commit 4670bd2

Please sign in to comment.