mirror of
https://github.com/actions/configure-pages.git
synced 2026-03-29 09:24:52 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7110e9e03f | ||
|
|
2139388aaf | ||
|
|
1249305e58 | ||
|
|
29466e6602 | ||
|
|
596b326b9b | ||
|
|
0f0e83884b | ||
|
|
fb49e2740e | ||
|
|
8255d25c18 | ||
|
|
425a42e364 | ||
|
|
e9cfa1e1db | ||
|
|
d11b920341 | ||
|
|
84ab70e745 | ||
|
|
b287dc6263 | ||
|
|
f92583d4ab | ||
|
|
231f4e0d00 | ||
|
|
dfe5b0f888 | ||
|
|
0b5c9335ec | ||
|
|
457b08648b | ||
|
|
406a88e3a9 | ||
|
|
0968db9eff |
@@ -16,7 +16,7 @@ inputs:
|
||||
default: ${{ github.token }}
|
||||
required: true
|
||||
enablement:
|
||||
description: 'Should a Pages site be enabled for the repository if not so already? This will only work with user-to-server tokens.'
|
||||
description: 'Try to enable Pages for the repository if it is not already enabled. This option requires a token other than `GITHUB_TOKEN` to be provided. In the context of a Personal Access Token, the `repo` scope or Pages write permission is required. In the context of a GitHub App, the `administration:write` and `pages:write` permissions are required.'
|
||||
default: 'false'
|
||||
required: false
|
||||
outputs:
|
||||
|
||||
12
dist/index.js
vendored
12
dist/index.js
vendored
@@ -17946,7 +17946,7 @@ var espree = () => Parser => {
|
||||
};
|
||||
};
|
||||
|
||||
const version$1 = "9.4.1";
|
||||
const version$1 = "9.5.0";
|
||||
|
||||
/**
|
||||
* @fileoverview Main Espree file that converts Acorn into Esprima output.
|
||||
@@ -18081,6 +18081,7 @@ function parse(code, options) {
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
const version = version$1;
|
||||
const name = "espree";
|
||||
|
||||
/* istanbul ignore next */
|
||||
const VisitorKeys = (function() {
|
||||
@@ -18090,16 +18091,16 @@ const VisitorKeys = (function() {
|
||||
// Derive node types from VisitorKeys
|
||||
/* istanbul ignore next */
|
||||
const Syntax = (function() {
|
||||
let name,
|
||||
let key,
|
||||
types = {};
|
||||
|
||||
if (typeof Object.create === "function") {
|
||||
types = Object.create(null);
|
||||
}
|
||||
|
||||
for (name in VisitorKeys) {
|
||||
if (Object.hasOwnProperty.call(VisitorKeys, name)) {
|
||||
types[name] = name;
|
||||
for (key in VisitorKeys) {
|
||||
if (Object.hasOwnProperty.call(VisitorKeys, key)) {
|
||||
types[key] = key;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18117,6 +18118,7 @@ const supportedEcmaVersions = getSupportedEcmaVersions();
|
||||
exports.Syntax = Syntax;
|
||||
exports.VisitorKeys = VisitorKeys;
|
||||
exports.latestEcmaVersion = latestEcmaVersion;
|
||||
exports.name = name;
|
||||
exports.parse = parse;
|
||||
exports.supportedEcmaVersions = supportedEcmaVersions;
|
||||
exports.tokenize = tokenize;
|
||||
|
||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
2669
package-lock.json
generated
2669
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -26,14 +26,14 @@
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.0",
|
||||
"@actions/github": "^5.1.1",
|
||||
"espree": "^9.4.1"
|
||||
"espree": "^9.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vercel/ncc": "^0.36.1",
|
||||
"eslint": "^8.34.0",
|
||||
"eslint-config-prettier": "^8.6.0",
|
||||
"eslint-plugin-github": "^4.6.0",
|
||||
"jest": "^29.4.1",
|
||||
"eslint": "^8.36.0",
|
||||
"eslint-config-prettier": "^8.7.0",
|
||||
"eslint-plugin-github": "^4.6.1",
|
||||
"jest": "^29.5.0",
|
||||
"prettier": "^2.8.4"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user