You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GitHub Actions workflows in nbdev-template still reference fastai/workflows, which has been migrated to answerdotai/workflows. While this redirect works on standard GitHub accounts, it causes failures on GitHub Enterprise due to stricter settings.
To Reproduce
Run nbdev_new to create a new project.
Push the repo to GitHub Enterprise.
Observe that workflows fail due to the outdated action reference.
Expected behavior
The generated workflows should correctly reference answerdotai/workflows to avoid failures.
Proposed Fix
Update .github/workflows/deploy.yaml and .github/workflows/test.yaml in nbdev-template to use:
- uses: answerdotai/workflows/nbdev-ci@master
instead of:
- uses: fastai/workflows/nbdev-ci@master
Related Issue
This is linked to AnswerDotAI/nbdev#1495, which addresses the same issue in the nbdev repo.
The text was updated successfully, but these errors were encountered:
Describe the bug
The GitHub Actions workflows in
nbdev-template
still referencefastai/workflows
, which has been migrated toanswerdotai/workflows
. While this redirect works on standard GitHub accounts, it causes failures on GitHub Enterprise due to stricter settings.To Reproduce
Run nbdev_new to create a new project.
Push the repo to GitHub Enterprise.
Observe that workflows fail due to the outdated action reference.
Expected behavior
The generated workflows should correctly reference answerdotai/workflows to avoid failures.
Proposed Fix
Update
.github/workflows/deploy.yaml
and.github/workflows/test.yaml
innbdev-template
to use:instead of:
Related Issue
This is linked to AnswerDotAI/nbdev#1495, which addresses the same issue in the nbdev repo.
The text was updated successfully, but these errors were encountered: