fix(message-list): fix display of longer date/time strings #2565
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: "Validate Workflows" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| dryRun: | |
| type: boolean | |
| description: Dry run | |
| default: true | |
| debug: | |
| type: boolean | |
| description: Debug mode | |
| default: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-workflows: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Ensure GitHub actions are SHA pinned | |
| env: | |
| DRY_RUN: ${{ !inputs.dryRun && '--no-dry-run' || '' }} | |
| DEBUG: ${{ inputs.debug && '--debug' || '' }} | |
| run: | | |
| bash scripts/ci/validate-github-actions-pinned.sh $DRY_RUN $DEBUG |