forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,581 changed files
with
362,932 additions
and
71,443 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node/.devcontainer/base.Dockerfile | ||
|
||
# [Choice] Node.js version: 16, 14, 12 | ||
ARG VARIANT="16-buster" | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} | ||
|
||
# [Optional] Uncomment this section to install additional OS packages. | ||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
# && apt-get -y install --no-install-recommends <your-package-list-here> | ||
|
||
# [Optional] Uncomment if you want to install an additional version of node using nvm | ||
# ARG EXTRA_NODE_VERSION=10 | ||
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" | ||
|
||
# [Optional] Uncomment if you want to install more global node modules | ||
# RUN su node -c "npm install -g <your-package-list-here>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node | ||
{ | ||
"name": "docs.github.com", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
// Update 'VARIANT' to pick a Node version: 12, 14, 16 | ||
"args": { "VARIANT": "16" } | ||
}, | ||
|
||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"cSpell.language": ",en" | ||
}, | ||
|
||
// Visual Studio Code extensions which help authoring for docs.github.com. | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"sissel.shopify-liquid", | ||
"davidanson.vscode-markdownlint", | ||
"bierner.markdown-preview-github-styles", | ||
"yzhang.markdown-all-in-one", | ||
"streetsidesoftware.code-spell-checker" | ||
], | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [4000], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "npm ci && npm run build", | ||
|
||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "node" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 22 additions & 17 deletions
39
.github/actions-scripts/check-for-enterprise-issues-by-label.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
#!/usr/bin/env node | ||
|
||
const github = require('@actions/github') | ||
const core = require('@actions/core') | ||
import { getOctokit } from '@actions/github' | ||
import { setOutput } from '@actions/core' | ||
|
||
async function run () { | ||
async function run() { | ||
const token = process.env.GITHUB_TOKEN | ||
const octokit = github.getOctokit(token) | ||
const octokit = getOctokit(token) | ||
const query = encodeURIComponent('is:open repo:github/docs-internal is:issue') | ||
|
||
const deprecationIssues = await octokit.request(`GET /search/issues?q=${query}+label:"enterprise%20deprecation"`) | ||
const releaseIssues = await octokit.request(`GET /search/issues?q=${query}+label:"enterprise%20release"`) | ||
|
||
const deprecationIssues = await octokit.request( | ||
`GET /search/issues?q=${query}+label:"enterprise%20deprecation"` | ||
) | ||
const releaseIssues = await octokit.request( | ||
`GET /search/issues?q=${query}+label:"enterprise%20release"` | ||
) | ||
const isDeprecationIssue = deprecationIssues.data.items.length === 0 ? 'false' : 'true' | ||
const isReleaseIssue = releaseIssues.data.items.length === 0 ? 'false' : 'true' | ||
core.setOutput('deprecationIssue', isDeprecationIssue) | ||
core.setOutput('releaseIssue', isReleaseIssue) | ||
setOutput('deprecationIssue', isDeprecationIssue) | ||
setOutput('releaseIssue', isReleaseIssue) | ||
return `Set outputs deprecationIssue: ${isDeprecationIssue}, releaseIssue: ${isReleaseIssue}` | ||
} | ||
|
||
run() | ||
.then( | ||
(response) => { console.log(`Finished running: ${response}`) }, | ||
(error) => { | ||
console.log(`#ERROR# ${error}`) | ||
process.exit(1) | ||
} | ||
) | ||
run().then( | ||
(response) => { | ||
console.log(`Finished running: ${response}`) | ||
}, | ||
(error) => { | ||
console.log(`#ERROR# ${error}`) | ||
process.exit(1) | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.