Skip to content

Adding kineticpredictormodel and obcanonicalradicals #61

Adding kineticpredictormodel and obcanonicalradicals

Adding kineticpredictormodel and obcanonicalradicals #61

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!'
})