You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/no-response.yml
+31-8Lines changed: 31 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,9 @@ jobs:
15
15
steps:
16
16
- uses: actions/stale@v9
17
17
with:
18
+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=env:
19
+
20
+
18
21
repo-token: ${{ secrets.GITHUB_TOKEN }}
19
22
only-issue-labels: 'more-info-needed'
20
23
days-before-issue-stale: -1# Skip stale state, go directly to close
@@ -24,11 +27,31 @@ jobs:
24
27
remove-stale-when-updated: true
25
28
close-issue-message: >
26
29
Thank you for your issue!
27
-
28
-
We haven't gotten a response to our questions above. With only the
29
-
information that is currently in the issue, we don't have enough
30
-
information to take action. We're going to close this but don't
31
-
hesitate to reach out if you have or find the answers we need. If
32
-
you answer our questions above, this issue will automatically
33
-
reopen.
34
-
close-issue-reason: 'not_planned'
30
+
- name: Setup Node.js environment
31
+
uses: actions/setup-node@v6.3.0
32
+
with:
33
+
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0.
34
+
node-version: # optional
35
+
# File containing the version Spec of the version to use. Examples: package.json, .nvmrc, .node-version, .tool-versions.
36
+
node-version-file: # optional
37
+
# Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default.
38
+
architecture: # optional
39
+
# Set this option if you want the action to check for the latest available version that satisfies the version spec.
40
+
check-latest: # optional
41
+
# Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN.
42
+
registry-url: # optional
43
+
# Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).
44
+
scope: # optional
45
+
# Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.
48
+
cache: # optional
49
+
# Set to false to disable automatic caching. By default, caching is enabled when either devEngines.packageManager or the top-level packageManager field in package.json specifies npm as the package manager.
50
+
package-manager-cache: # optional, default is true
51
+
# Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies.
52
+
cache-dependency-path: # optional
53
+
# Used to specify an alternative mirror to download Node.js binaries from
54
+
mirror: # optional
55
+
# The token used as Authorization header when fetching from the mirror
0 commit comments