Skip to content

Commit

Permalink
Merge pull request #757 from conda-forge/turn-on-for-all
Browse files Browse the repository at this point in the history
feat: turn on for everyone
  • Loading branch information
beckermr authored Nov 1, 2024
2 parents 9c090dc + 60b2e9e commit fb740ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -492,4 +492,9 @@ def main_automerge(repo, sha):
found_pr = True

if not found_pr:
raise RuntimeError(f"No PR found for {full_repo_name}@{sha}!")
LOGGER.error(f"No PR found for {full_repo_name}@{sha}!")
print(
"::warning title=No PR Found for Automerge::"
f"No PR found for {full_repo_name}@{sha}",
flush=True,
)
7 changes: 1 addition & 6 deletions conda_forge_webservices/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,12 +734,6 @@ async def post(self):


def _dispatch_automerge_job(repo, sha):
if repo != "cf-autotick-bot-test-package-feedstock":
LOGGER.info(
" skipping automerge job dispatch for conda-forge/%s@%s", repo, sha
)
return

gh = get_gh_client()

skip_test_pr = False
Expand Down Expand Up @@ -859,6 +853,7 @@ async def post(self):
body["repository"]["name"],
body["pull_request"]["head"]["sha"],
)
return
else:
LOGGER.info(f'Unhandled event "{event}".')

Expand Down

0 comments on commit fb740ba

Please sign in to comment.