Fix ISM and other timestamp fields typed as integer instead of int64 causing numeric overflow #14322
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
| name: "Changelog Verifier" | |
| on: | |
| pull_request: | |
| types: [opened, edited, review_requested, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
| jobs: | |
| # Enforces the update of a changelog file on every pull request | |
| verify-changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: dangoslen/changelog-enforcer@8b5e9dc3121363bb7c0115f8533404d92af382de # v3.7.0 | |
| with: | |
| skipLabels: "autocut, skip-changelog" |