[4.2.x] [ocpp] Retry MeterValues ChangeConfiguration with stripped measurand on Reject #520
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
| name: Build pull request | |
| on: | |
| pull_request: | |
| branches: [ "master", "3.*" , "4.*", "5.*" ] | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| type: string | |
| description: "" | |
| rebuild_triggered: | |
| type: string | |
| description: "" | |
| triggered_by: | |
| type: string | |
| description: "" | |
| trigger_sha: | |
| type: string | |
| description: "" | |
| jobs: | |
| reactor: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| additional_options: ${{ steps.reactor-calculator.outputs.additional_options }} | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # 6.0.3 | |
| with: | |
| fetch-depth: 2 | |
| - name: Fetch base branch for diff | |
| if: github.event_name == 'pull_request' | |
| run: git fetch origin ${{ github.event.pull_request.base_ref }} --depth=1 | |
| - id: reactor-calculator | |
| run: | | |
| additional_options=$(.github/workflows/scripts/reactor-calculator.sh "${{ github.event.pull_request.head_ref }}" "${{ github.event.pull_request.base_ref }}") | |
| echo "additional_options=$additional_options" >> $GITHUB_OUTPUT | |
| build: | |
| needs: reactor | |
| permissions: | |
| checks: write | |
| contents: read | |
| uses: 'connectorio/gh-actions-shared/.github/workflows/maven.yml@master' | |
| secrets: | |
| CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} | |
| CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} | |
| with: | |
| openhab: true | |
| server_id: co7io-public-snapshots | |
| deploy: ${{ github.event.pull_request.head.repo.fork == false }} | |
| skip_test_publish: ${{ github.event.pull_request.head.repo.fork == true }} | |
| additional_profiles: 'thing4,openhab' | |
| additional_options: ${{ needs.reactor.outputs.additional_options }} | |
| master_branch: '5' |