Skip to content

Commit

Permalink
fix: revert for pr
Browse files Browse the repository at this point in the history
  • Loading branch information
tefkah committed May 17, 2022
1 parent 1fe2b4a commit 18a7dc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -3,7 +3,7 @@ description: 'Converts IDE TODO comments to GitHub issues'
author: 'Alastair Mooney'
runs:
using: 'docker'
image: 'Dockerfile'
image: 'docker://ghcr.io/alstr/todo-to-issue-action:v4.7'
branding:
icon: 'check-square'
color: 'orange'
Expand Down
2 changes: 1 addition & 1 deletion main.py
Expand Up @@ -308,7 +308,7 @@ def __init__(self):
raise Exception('Cannot retrieve languages data. Operation will abort.')

# Load the comment syntax data for identifying comments.
syntax_url = 'https://raw.githubusercontent.com/thomasfkjorna/todo-to-issue-action/master/syntax.json'
syntax_url = 'https://raw.githubusercontent.com/alstr/todo-to-issue-action/master/syntax.json'
syntax_request = requests.get(url=syntax_url)
if syntax_request.status_code == 200:
self.syntax_dict = syntax_request.json()
Expand Down

0 comments on commit 18a7dc8

Please sign in to comment.