[BUG] Fix bug in WEASELTransformerV2.fit_transform() method (Issue #3283) #1733
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: PR opened | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| # based on the scikit-learn 1.3.1 PR labelers | |
| labeler: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| sparse-checkout: .github/utilities | |
| - name: Setup Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install PyGithub | |
| run: pip install -Uq PyGithub | |
| - name: Create app token | |
| uses: actions/create-github-app-token@v2 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.PR_APP_ID }} | |
| private-key: ${{ secrets.PR_APP_KEY }} | |
| - name: Label pull request | |
| id: label-pr | |
| run: python .github/utilities/pr_labeler.py | |
| env: | |
| CONTEXT_GITHUB: ${{ toJson(github) }} | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| - name: Write pull request comment | |
| run: python .github/utilities/pr_open_commenter.py | |
| env: | |
| CONTEXT_GITHUB: ${{ toJson(github) }} | |
| GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
| TITLE_LABELS: ${{ steps.label-pr.outputs.title-labels }} | |
| TITLE_LABELS_NEW: ${{ steps.label-pr.outputs.title-labels-new }} | |
| CONTENT_LABELS: ${{ steps.label-pr.outputs.content-labels }} | |
| CONTENT_LABELS_STATUS: ${{ steps.label-pr.outputs.content-labels-status }} |