Skip to content

Commit

Permalink
workflow to update ira-production branch and lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhacde committed Jul 10, 2024
1 parent 2f07a94 commit 1759e04
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sync_ira_production_branch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update IRA Production Branche

on:
push:
branches:
- production

jobs:
sync_ira_production:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Update ira-production Branch
run: |
git checkout ira-production
git pull origin ira-production
git merge origin/production --no-edit
git push origin ira-production

0 comments on commit 1759e04

Please sign in to comment.