fix: set the text language correctly

This commit is contained in:
Thomas F. K. Jorna 2022-05-17 10:45:00 +02:00
parent 679302c25a
commit 1ce77430b2
2 changed files with 31 additions and 31 deletions

View File

@ -1,71 +1,71 @@
name: "TODO to Issue" name: 'TODO to Issue'
description: "Converts IDE TODO comments to GitHub issues" description: 'Converts IDE TODO comments to GitHub issues'
author: "Alastair Mooney" author: 'Alastair Mooney'
runs: runs:
using: "docker" using: 'docker'
image: "docker://ghcr.io/alstr/todo-to-issue-action:v4.6" image: 'Dockerfile'
branding: branding:
icon: "check-square" icon: 'check-square'
color: "orange" color: 'orange'
inputs: inputs:
REPO: REPO:
description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)" description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)"
required: true required: true
default: "${{ github.repository }}" default: '${{ github.repository }}'
BEFORE: BEFORE:
description: "The SHA of the last pushed commit (automatically set)" description: 'The SHA of the last pushed commit (automatically set)'
required: true required: true
default: "${{ github.event.before || github.base_ref }}" default: '${{ github.event.before || github.base_ref }}'
COMMITS: COMMITS:
description: "An array of commit objects describing the pushed commits" description: 'An array of commit objects describing the pushed commits'
required: true required: true
default: "${{ toJSON(github.event.commits) }}" default: '${{ toJSON(github.event.commits) }}'
DIFF_URL: DIFF_URL:
description: "The URL to use to get the diff (automatically set)" description: 'The URL to use to get the diff (automatically set)'
required: true required: true
default: "${{ github.event.pull_request.diff_url }}" default: '${{ github.event.pull_request.diff_url }}'
SHA: SHA:
description: "The SHA of the latest commit (automatically set)" description: 'The SHA of the latest commit (automatically set)'
required: true required: true
default: "${{ github.sha }}" default: '${{ github.sha }}'
TOKEN: TOKEN:
description: "The GitHub access token to allow us to retrieve, create and update issues (automatically set)" description: 'The GitHub access token to allow us to retrieve, create and update issues (automatically set)'
required: false required: false
default: ${{ github.token }} default: ${{ github.token }}
LABEL: LABEL:
description: "The label that will be used to identify TODO comments (deprecated)" description: 'The label that will be used to identify TODO comments (deprecated)'
required: false required: false
COMMENT_MARKER: COMMENT_MARKER:
description: "The marker used to signify a line comment in your code (deprecated)" description: 'The marker used to signify a line comment in your code (deprecated)'
required: false required: false
CLOSE_ISSUES: CLOSE_ISSUES:
description: "Optional input that specifies whether to attempt to close an issue when a TODO is removed" description: 'Optional input that specifies whether to attempt to close an issue when a TODO is removed'
required: true required: true
default: true default: true
AUTO_P: AUTO_P:
description: "For multiline TODOs, format each line as a new paragraph when creating the issue" description: 'For multiline TODOs, format each line as a new paragraph when creating the issue'
required: true required: true
default: true default: true
PROJECTS_SECRET: PROJECTS_SECRET:
description: "Encrypted secret corresponding to your personal access token (do not enter the actual secret)" description: 'Encrypted secret corresponding to your personal access token (do not enter the actual secret)'
required: false required: false
USER_PROJECTS: USER_PROJECTS:
description: "Default user projects" description: 'Default user projects'
required: false required: false
ORG_PROJECTS: ORG_PROJECTS:
description: "Default organisation projects" description: 'Default organisation projects'
required: false required: false
IGNORE: IGNORE:
description: "A collection of comma-delimited regular expression that matches files that should be ignored when searching for TODOs" description: 'A collection of comma-delimited regular expression that matches files that should be ignored when searching for TODOs'
required: false required: false
AUTO_ASSIGN: AUTO_ASSIGN:
description: "Automatically assign new issues to the user who triggered the action" description: 'Automatically assign new issues to the user who triggered the action'
required: true required: true
default: false default: false
ACTOR: ACTOR:
description: "The username of the person who triggered the action" description: 'The username of the person who triggered the action'
required: true required: true
default: "${{ github.actor }}" default: '${{ github.actor }}'
ISSUE_TEMPLATE: ISSUE_TEMPLATE:
description: "The template used to format new issues" description: 'The template used to format new issues'
required: false required: false

View File

@ -65,7 +65,7 @@ class NewIssueTests(unittest.TestCase):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
def test_md_issues(self): def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'md'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 2)
class ClosedIssueTests(unittest.TestCase): class ClosedIssueTests(unittest.TestCase):
@ -121,7 +121,7 @@ class ClosedIssueTests(unittest.TestCase):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
def test_md_issues(self): def test_md_issues(self):
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'md'), 2) self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 2)
class IgnorePatternTests(unittest.TestCase): class IgnorePatternTests(unittest.TestCase):