Skip to content

Maximum Likelihood Estimation - how neural networks learn | Chan`s Jupyter #64

Maximum Likelihood Estimation - how neural networks learn | Chan`s Jupyter

Maximum Likelihood Estimation - how neural networks learn | Chan`s Jupyter #64

name: Issue Reminder
on:
issues:
types: [opened]
jobs:
issue_comment:
if: |
(github.repository == 'fastai/fastpages')
runs-on: ubuntu-latest
steps:
- name: Comment on issue
uses: actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
var url = 'https://github.com/fastai/fastpages/blob/master/_fastpages_docs/TROUBLESHOOTING.md'
var msg = `Thank you for opening an issue. If this issue is related to a bug, please follow the steps and provide the information outlined in the [Troubleshooting Guide](${url}). Failure to follow these instructions may result in automatic closing of this issue.`
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: msg
})