Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHubRelease: Note that the GitHub connection must be OAuth or PAT #9479

Merged
merged 2 commits into from
Feb 1, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"loc.helpMarkDown": "[More Information](https://aka.ms/AA3aeiw)",
"loc.description": "Create, edit, or delete a GitHub release.",
"loc.instanceNameFormat": "GitHub release ($(action))",
"loc.input.label.gitHubConnection": "GitHub Connection",
"loc.input.help.gitHubConnection": "Specify the service connection name for your GitHub connection. Learn more about service connections [here](https://aka.ms/AA3am5s).",
"loc.input.label.gitHubConnection": "GitHub connection (OAuth or PAT)",
"loc.input.help.gitHubConnection": "Specify the service connection name for your GitHub connection. The connection must be based on OAuth or a GitHub personal access token. Learn more about service connections [here](https://aka.ms/AA3am5s).",
"loc.input.label.repositoryName": "Repository",
"loc.input.help.repositoryName": "Specify the name of the GitHub repository in which GitHub releases will be created.",
"loc.input.label.action": "Action",
Expand Down
30 changes: 29 additions & 1 deletion Tasks/GitHubReleaseV0/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Tasks/GitHubReleaseV0/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"version": {
"Major": 0,
"Minor": 0,
"Patch": 2
"Patch": 3
},
"demands": [],
"minimumAgentVersion": "2.0.0",
"inputs": [
{
"name": "gitHubConnection",
"type": "connectedService:github:OAuth,PersonalAccessToken",
"label": "GitHub Connection",
"label": "GitHub connection (OAuth or PAT)",
davidstaheli marked this conversation as resolved.
Show resolved Hide resolved
"defaultValue": "",
"required": true,
"helpMarkDown": "Specify the service connection name for your GitHub connection. Learn more about service connections [here](https://aka.ms/AA3am5s)."
"helpMarkDown": "Specify the service connection name for your GitHub connection. The connection must be based on OAuth or a GitHub personal access token. Learn more about service connections [here](https://aka.ms/AA3am5s)."
},
{
"name": "repositoryName",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/GitHubReleaseV0/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"version": {
"Major": 0,
"Minor": 0,
"Patch": 2
"Patch": 3
},
"demands": [],
"minimumAgentVersion": "2.0.0",
Expand Down