Skip to content

Commit

Permalink
Merge pull request #90
Browse files Browse the repository at this point in the history
Create update-dev.yaml
  • Loading branch information
JimmyTron authored Dec 5, 2023
2 parents e0bfecd + a7cc35a commit a2e0df6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update Dev Branch on Main Update

on:
push:
branches:
- main

jobs:
update-dev-branch:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Update Dev branch
run: |
git checkout -B dev main # Checkout or create 'dev' branch from 'main'
git pull origin main # Pull changes from the main branch
# Make necessary changes here or use any other command to update the dev branch
git push origin dev # Push changes to the 'dev' branch

0 comments on commit a2e0df6

Please sign in to comment.