D8CORE-7434 D8CORE-7435 D8CORE-7436 | add full content layout and configure card and list display #2103
Workflow file for this run
This file contains 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
# This workflow will triage pull requests and apply a label based on the | |
# paths that are modified in the pull request. | |
# | |
# To use this workflow, you will need to set up a .github/labeler.yml | |
# file with configuration. For more information, see: | |
# https://github.com/actions/labeler/blob/master/README.md | |
name: PR Labeler | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
pr-labeler: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: codelytv/pr-size-labeler@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_max_size: '100' | |
s_max_size: '500' | |
m_max_size: '1000' | |
l_max_size: '3000' | |
fail_if_xl: 'false' | |
message_if_xl: '' | |
- uses: banyan/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |