fix: day entry hour and text bugs fixed #507
This file contains hidden or 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
| ######################################################## | |
| # Action to run on pullrequests # | |
| ######################################################## | |
| name: Action on Pullrequest creation and update | |
| on: pull_request | |
| jobs: | |
| install: | |
| uses: ./.github/workflows/reusable-install-job.yml | |
| build: | |
| needs: install | |
| uses: ./.github/workflows/reusable-build-job.yml | |
| with: | |
| environmentName: staging | |
| debug: 'true' | |
| mode: "" | |
| secrets: inherit | |
| test: | |
| needs: [install, build] | |
| uses: ./.github/workflows/reusable-test-job.yml |