mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 22:06:43 +00:00
fix: revert for pr
This commit is contained in:
parent
1fe2b4ae2a
commit
18a7dc81ad
@ -3,7 +3,7 @@ description: 'Converts IDE TODO comments to GitHub issues'
|
|||||||
author: 'Alastair Mooney'
|
author: 'Alastair Mooney'
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'docker://ghcr.io/alstr/todo-to-issue-action:v4.7'
|
||||||
branding:
|
branding:
|
||||||
icon: 'check-square'
|
icon: 'check-square'
|
||||||
color: 'orange'
|
color: 'orange'
|
||||||
|
|||||||
2
main.py
2
main.py
@ -308,7 +308,7 @@ class TodoParser(object):
|
|||||||
raise Exception('Cannot retrieve languages data. Operation will abort.')
|
raise Exception('Cannot retrieve languages data. Operation will abort.')
|
||||||
|
|
||||||
# Load the comment syntax data for identifying comments.
|
# 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)
|
syntax_request = requests.get(url=syntax_url)
|
||||||
if syntax_request.status_code == 200:
|
if syntax_request.status_code == 200:
|
||||||
self.syntax_dict = syntax_request.json()
|
self.syntax_dict = syntax_request.json()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user