Skip to content

Commit 209b2b4

Browse files
authored
Merge pull request #5 from Openwira/main
Add sponsor link
2 parents 97959a7 + 8ab22bc commit 209b2b4

2 files changed

Lines changed: 35 additions & 8 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
gh pr checkout 2{
2+
"image": "mcr.microsoft.com/devcontainers/universal:2",
3+
"features": {}
4+
}

.github/workflows/no-response.yml

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/stale@v9
1717
with:
18+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=env:
19+
20+
1821
repo-token: ${{ secrets.GITHUB_TOKEN }}
1922
only-issue-labels: 'more-info-needed'
2023
days-before-issue-stale: -1 # Skip stale state, go directly to close
@@ -24,11 +27,31 @@ jobs:
2427
remove-stale-when-updated: true
2528
close-issue-message: >
2629
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.
46+
token: # optional, default is ${{ github.server_url == 'https://github.com' && github.token || '' }}
47+
# 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
56+
mirror-token: # optional
57+

0 commit comments

Comments
 (0)