Revert "reference forked repo for testing"

This reverts commit 93d3a69e0b.
This commit is contained in:
Christopher Dehner 2023-08-28 16:09:41 -04:00
parent 93d3a69e0b
commit 981c3e44a5
2 changed files with 2 additions and 2 deletions

View File

@ -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.10.1'
branding:
icon: 'check-square'
color: 'orange'

View File

@ -323,7 +323,7 @@ class TodoParser(object):
raise Exception('Cannot retrieve languages data. Operation will abort.')
# Load the comment syntax data for identifying comments.
syntax_url = 'https://raw.githubusercontent.com/cyadehn/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()