-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat) support for reusable form components (#126)
* (feat) support for reusable components * wip * refactors and clean ups * PR comments * resolves test failures
- Loading branch information
Showing
17 changed files
with
2,598 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
Oops, something went wrong.