Skip to content

[BUG] Six transformers return float64 for float32 input #245

[BUG] Six transformers return float64 for float32 input

[BUG] Six transformers return float64 for float32 input #245

name: Issue assigned
on:
issues:
types: [assigned]
concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.id }}
cancel-in-progress: true
jobs:
remove-good-first-issue:
runs-on: ubuntu-24.04
steps:
- name: Create app token
uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ vars.PR_APP_ID }}
private-key: ${{ secrets.PR_APP_KEY }}
- name: Checkout main
uses: actions/checkout@v7
with:
sparse-checkout: .github/utilities
- name: Setup Python 3.12
uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Install PyGithub
run: pip install -Uq PyGithub
- name: Process comment edit
id: label_out
run: python .github/utilities/remove_good_first_issue.py
env:
CONTEXT_GITHUB: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}