Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

close re-render/etc issues if nothing is needed #227

Merged
merged 2 commits into from
Aug 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conda-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
conda-smithy>=3
ruamel.yaml==0.15.51 # until https://github.com/conda-forge/conda-smithy/pull/871
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dougalsutherland, does 0.15.51 work? We may have to pin it back to 0.15.50

conda-forge-pinning
tornado
pygithub
Expand Down
2 changes: 2 additions & 0 deletions conda_forge_webservices/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,8 @@ def issue_comment(org_name, repo_name, issue_num, title, comment):
I've {} as requested, but nothing actually changed.
""").format(comment_msg)
issue.create_comment(message)
if to_close:
issue.edit(state="closed")


def rerender(repo):
Expand Down