Skip to content

Commit 06b2746

Browse files
authored
(feat) support for reusable form components (#126)
* (feat) support for reusable components * wip * refactors and clean ups * PR comments * resolves test failures
1 parent 832ef9d commit 06b2746

17 files changed

+2598
-96
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -174,37 +174,37 @@ jobs:
174174
branch: chore/bump-form-engine
175175
base: main
176176

177-
bump-form_builder:
178-
runs-on: ubuntu-latest
179-
180-
needs: pre_release
181-
182-
steps:
183-
- name: Checkout code
184-
uses: actions/checkout@v3
185-
with:
186-
repository: openmrs/openmrs-esm-form-builder
187-
ref: main
188-
189-
- name: Install dependencies
190-
run: yarn
191-
192-
- name: Bump form engine
193-
run: yarn ci:bump-form-engine-lib
194-
195-
- name: Commit changes
196-
run: |
197-
git config user.email "[email protected]"
198-
git config user.name "GitHub Actions"
199-
git add yarn.lock
200-
git commit -m "(chore) bump-form-engine"
201-
202-
- name: Create PR
203-
uses: peter-evans/create-pull-request@v3
204-
with:
205-
token: ${{ secrets.ACTIONS_OHRI_PAT }}
206-
commit-message: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
207-
title: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
208-
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`."
209-
branch: chore/bump-form-engine
210-
base: main
177+
# bump-form_builder:
178+
# runs-on: ubuntu-latest
179+
180+
# needs: pre_release
181+
182+
# steps:
183+
# - name: Checkout code
184+
# uses: actions/checkout@v3
185+
# with:
186+
# repository: openmrs/openmrs-esm-form-builder
187+
# ref: main
188+
189+
# - name: Install dependencies
190+
# run: yarn
191+
192+
# - name: Bump form engine
193+
# run: yarn ci:bump-form-engine-lib
194+
195+
# - name: Commit changes
196+
# run: |
197+
# git config user.email "[email protected]"
198+
# git config user.name "GitHub Actions"
199+
# git add yarn.lock
200+
# git commit -m "(chore) bump-form-engine"
201+
202+
# - name: Create PR
203+
# uses: peter-evans/create-pull-request@v3
204+
# with:
205+
# token: ${{ secrets.ACTIONS_OHRI_PAT }}
206+
# commit-message: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
207+
# title: "(chore) Bump `@openmrs/openmrs-form-engine-lib`"
208+
# 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`."
209+
# branch: chore/bump-form-engine
210+
# base: main

0 commit comments

Comments
 (0)