fix: cast thrift encoded values to ints to preven issues with 32 systems #4864
Workflow file for this run
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
| on: | |
| pull_request_target: | |
| types: ["opened", "edited", "reopened", "ready_for_review", "synchronize"] | |
| jobs: | |
| pull-request-description: | |
| uses: "aeon-php/actions/.github/workflows/automation-pr-description-validate.yml@main" | |
| secrets: | |
| automation_github_token: "${{ secrets.GITHUB_TOKEN }}" | |
| pull-request-size: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: codelytv/pr-size-labeler@v1 | |
| with: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| xs_label: 'size: XS' | |
| xs_max_size: 50 | |
| s_label: 'size: S' | |
| s_max_size: 250 | |
| m_label: 'size: M' | |
| m_max_size: 500 | |
| l_label: 'size: L' | |
| l_max_size: 1000 | |
| xl_label: 'size: XL' | |
| fail_if_xl: false | |
| files_to_ignore: 'composer.lock timezones.json nested_timezones.json' | |
| message_if_xl: '' |