Skip to content

Commit

Permalink
(feat) support for reusable form components (#126)
Browse files Browse the repository at this point in the history
* (feat) support for reusable components

* wip

* refactors and clean ups

* PR comments

* resolves test failures
  • Loading branch information
pirupius authored Nov 22, 2023
1 parent 832ef9d commit 06b2746
Show file tree
Hide file tree
Showing 17 changed files with 2,598 additions and 96 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,37 +174,37 @@ jobs:
branch: chore/bump-form-engine
base: main

bump-form_builder:
runs-on: ubuntu-latest

needs: pre_release

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: openmrs/openmrs-esm-form-builder
ref: main

- name: Install dependencies
run: yarn

- name: Bump form engine
run: yarn ci:bump-form-engine-lib

- name: Commit changes
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions"
git add yarn.lock
git commit -m "(chore) bump-form-engine"
- name: Create PR
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.ACTIONS_OHRI_PAT }}
commit-message: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
title: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
body: "This is an automated PR that bumps the [form engine library](https://github.com/openmrs/openmrs-form-engine-lib) to the newest available version tagged `next`."
branch: chore/bump-form-engine
base: main
# bump-form_builder:
# runs-on: ubuntu-latest

# needs: pre_release

# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# with:
# repository: openmrs/openmrs-esm-form-builder
# ref: main

# - name: Install dependencies
# run: yarn

# - name: Bump form engine
# run: yarn ci:bump-form-engine-lib

# - name: Commit changes
# run: |
# git config user.email "[email protected]"
# git config user.name "GitHub Actions"
# git add yarn.lock
# git commit -m "(chore) bump-form-engine"

# - name: Create PR
# uses: peter-evans/create-pull-request@v3
# with:
# token: ${{ secrets.ACTIONS_OHRI_PAT }}
# commit-message: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
# title: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
# body: "This is an automated PR that bumps the [form engine library](https://github.com/openmrs/openmrs-form-engine-lib) to the newest available version tagged `next`."
# branch: chore/bump-form-engine
# base: main
Loading

0 comments on commit 06b2746

Please sign in to comment.