Added section to Python models doc to discuss third party packages following this the thread: https://dbt-labs.slack.com/archives/C05FWBP9X1U/p1730272033637189 #25598
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
name: labeler | |
on: [pull_request_target] | |
jobs: | |
labeler: | |
runs-on: ubuntu-latest | |
name: Label the PR size | |
steps: | |
- uses: codelytv/pr-size-labeler@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_label: 'size: x-small' | |
xs_max_size: '10' | |
s_label: 'size: small' | |
s_max_size: '50' | |
m_label: 'size: medium' | |
m_max_size: '250' | |
l_label: 'size: large' | |
l_max_size: '100000' | |
xl_label: 'size: x-large' | |
fail_if_xl: 'false' | |
files_to_ignore: '' | |