Adding kineticpredictormodel and obcanonicalradicals #61
Workflow file for this run
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: directory_linter | |
on: | |
pull_request_target: | |
paths: | |
- 'recipes/*.yml' | |
- 'recipes/*.yaml' | |
jobs: | |
comment: | |
name: Notify user about wrong dir | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Comment on PR | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Hi! Thanks for your contribution to conda-forge.' + | |
'\nUnfortunately, the recipe was added directly in the `recipes` folder without its own subfolder.\n' + | |
'Please move the recipe file into a folder with the name of the package you want to submit.\n\n' + | |
'For example: if your recipe is currently under `recipes/<your_package>.yaml`, ' + | |
'it should be moved to `recipes/<your_package>/meta.yaml`.\n' + | |
'Thanks!' | |
}) |