Merge branch 'main' into joshmgross/lint-ci

This commit is contained in:
Josh Gross
2023-03-20 17:47:17 -04:00
committed by GitHub
10 changed files with 89 additions and 29 deletions
+35
View File
@@ -0,0 +1,35 @@
---
name: Bug report
about: Report a bug or unexpected behavior while using Actions Language Services
title: ''
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. With this workflow '...'
2. Do this '...'
3. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Package/Area**
- [ ] Expressions
- [ ] Workflow Parser
- [ ] Language Service
- [ ] Language Server
**Package Version**
`v1.x.y`
**Additional context**
Add any other context about the problem here.
+8
View File
@@ -0,0 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Ask a question or provide feedback about the Actions Language Services
about: For general Q&A and feedback, see the Discussions tab.
url: https://github.com/actions/languageservices/discussions
- name: Ask a question or provide feedback about GitHub Actions
about: Please check out the GitHub community forum for discussions about GitHub Actions
url: https://github.com/orgs/community/discussions/categories/actions
+17
View File
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for Actions Language Services
title: ''
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Additional context**
Add any other context or screenshots about the feature request here.
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "browser-playground",
"version": "0.1.176",
"version": "0.1.178",
"description": "",
"private": true,
"main": "index.js",
"type": "module",
"dependencies": {
"@github/actions-languageserver": "^0.1.176",
"@github/actions-languageserver": "^0.1.178",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-editor-workers": "^0.34.2",
"monaco-languageclient": "^4.0.3",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@github/actions-expressions",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@github/actions-languageserver",
"version": "0.1.176",
"version": "0.1.178",
"description": "Language server for GitHub Actions",
"license": "MIT",
"type": "module",
@@ -40,8 +40,8 @@
"watch": "tsc --build tsconfig.build.json --watch"
},
"dependencies": {
"@github/actions-languageservice": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-languageservice": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"@octokit/rest": "^19.0.7",
"@octokit/types": "^9.0.0",
"vscode-languageserver": "^8.0.2",
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@github/actions-languageservice",
"version": "0.1.176",
"version": "0.1.178",
"description": "Language service for GitHub Actions",
"license": "MIT",
"type": "module",
@@ -41,8 +41,8 @@
"watch": "tsc --build tsconfig.build.json --watch"
},
"dependencies": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-languageserver-types": "^3.17.2",
"vscode-uri": "^3.0.7",
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "0.1.176"
"version": "0.1.178"
}
+17 -17
View File
@@ -111,10 +111,10 @@
}
},
"browser-playground": {
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"dependencies": {
"@github/actions-languageserver": "^0.1.176",
"@github/actions-languageserver": "^0.1.178",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-editor-workers": "^0.34.2",
"monaco-languageclient": "^4.0.3",
@@ -135,7 +135,7 @@
},
"expressions": {
"name": "@github/actions-expressions",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.3",
@@ -151,11 +151,11 @@
},
"languageserver": {
"name": "@github/actions-languageserver",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"dependencies": {
"@github/actions-languageservice": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-languageservice": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"@octokit/rest": "^19.0.7",
"@octokit/types": "^9.0.0",
"vscode-languageserver": "^8.0.2",
@@ -190,11 +190,11 @@
},
"languageservice": {
"name": "@github/actions-languageservice",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"dependencies": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-languageserver-types": "^3.17.2",
"vscode-uri": "^3.0.7",
@@ -14285,10 +14285,10 @@
},
"workflow-parser": {
"name": "@github/actions-workflow-parser",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"dependencies": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"cronstrue": "^2.21.0",
"yaml": "^2.0.0-8"
},
@@ -14847,8 +14847,8 @@
"@github/actions-languageserver": {
"version": "file:languageserver",
"requires": {
"@github/actions-languageservice": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-languageservice": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"@octokit/rest": "^19.0.7",
"@octokit/types": "^9.0.0",
"@types/jest": "^29.0.3",
@@ -14881,8 +14881,8 @@
"@github/actions-languageservice": {
"version": "file:languageservice",
"requires": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-workflow-parser": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"@github/actions-workflow-parser": "^0.1.178",
"@types/jest": "^29.0.3",
"jest": "^29.0.3",
"prettier": "^2.8.3",
@@ -14900,7 +14900,7 @@
"@github/actions-workflow-parser": {
"version": "file:workflow-parser",
"requires": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
@@ -17894,7 +17894,7 @@
"browser-playground": {
"version": "file:browser-playground",
"requires": {
"@github/actions-languageserver": "^0.1.176",
"@github/actions-languageserver": "^0.1.178",
"css-loader": "^6.7.2",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-editor-workers": "^0.34.2",
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@github/actions-workflow-parser",
"version": "0.1.176",
"version": "0.1.178",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
@@ -40,7 +40,7 @@
"watch": "tsc --build tsconfig.build.json --watch"
},
"dependencies": {
"@github/actions-expressions": "^0.1.176",
"@github/actions-expressions": "^0.1.178",
"cronstrue": "^2.21.0",
"yaml": "^2.0.0-8"
},