add script to port old equiv2 checkpoint+yaml to hydra version (#846) #27
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: Release Drafter - fairchem_core | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/fairchem/core/**' | |
- 'packages/fairchem-core/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
update_release_draft: | |
permissions: | |
# write permission is required to create a github release | |
contents: write | |
pull-requests: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v6 | |
with: | |
disable-autolabeler: true | |
latest: true | |
config-name: release-drafter-core.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |