Add select-slider card feature for select/input_select tile control #2638
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: Pull request standards | |
| on: | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] -- safe: reads PR metadata from event payload only, checks out base repo scripts only, never PR head code | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - ready_for_review | |
| branches: | |
| - dev | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| name: Check pull request follows contribution standards | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write # To label and comment on pull requests | |
| steps: | |
| - name: Check out workflow scripts | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| sparse-checkout: .github/scripts | |
| - name: Check pull request standards | |
| uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 | |
| with: | |
| script: | | |
| const { default: checkStandards } = await import( | |
| `${process.env.GITHUB_WORKSPACE}/.github/scripts/check-pull-request-standards.mjs` | |
| ); | |
| await checkStandards({ github, context, core }); |