Skip to content

Commit a60b794

Browse files
zs Ai Mini
This AI research will give you all the results you want in your whole life. It's also allowed to link to a data base like: Meta, cloud, etc
1 parent b3fe4dd commit a60b794

1 file changed

Lines changed: 290 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 290 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,290 @@
1+
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2+
#
3+
# You can adjust the behavior by modifying this file.
4+
# For more information, see:
5+
# https://github.com/actions/stale
6+
name: Mark stale issues and pull requests
7+
8+
on:
9+
schedule:
10+
- cron: '41 8 * * *'
11+
12+
jobs:
13+
stale:
14+
15+
runs-on: ubuntu-latest
16+
permissions:
17+
issues: write
18+
pull-requests: write
19+
20+
steps:
21+
- uses: actions/stale@v5
22+
with:
23+
repo-token: ${{ secrets.GITHUB_TOKEN }}
24+
stale-issue-message: 'Stale issue message'
25+
stale-pr-message: 'Stale pull request message'
26+
stale-issue-label: 'no-issue-activity'
27+
stale-pr-label: 'no-pr-activity'
28+
- name: Setup Java JDK
29+
uses: actions/setup-java@v5.0.0
30+
with:
31+
# The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file
32+
java-version: # optional
33+
# The path to the `.java-version` file. See examples of supported syntax in README file
34+
java-version-file: # optional
35+
# Java distribution. See the list of supported distributions in README file
36+
distribution:
37+
# The package type (jdk, jre, jdk+fx, jre+fx)
38+
java-package: # optional, default is jdk
39+
# The architecture of the package (defaults to the action runner's architecture)
40+
architecture: # optional
41+
# Path to where the compressed JDK is located
42+
jdkFile: # optional
43+
# Set this option if you want the action to check for the latest available version that satisfies the version spec
44+
check-latest: # optional
45+
# ID of the distributionManagement repository in the pom.xml file. Default is `github`
46+
server-id: # optional, default is github
47+
# Environment variable name for the username for authentication to the Apache Maven repository. Default is $GITHUB_ACTOR
48+
server-username: # optional, default is GITHUB_ACTOR
49+
# Environment variable name for password or token for authentication to the Apache Maven repository. Default is $GITHUB_TOKEN
50+
server-password: # optional, default is GITHUB_TOKEN
51+
# Path to where the settings.xml file will be written. Default is ~/.m2.
52+
settings-path: # optional
53+
# Overwrite the settings.xml file if it exists. Default is "true".
54+
overwrite-settings: # optional, default is true
55+
# GPG private key to import. Default is empty string.
56+
gpg-private-key: # optional
57+
# Environment variable name for the GPG private key passphrase. Default is $GPG_PASSPHRASE.
58+
gpg-passphrase: # optional
59+
# Name of the build platform to cache dependencies. It can be "maven", "gradle" or "sbt".
60+
cache: # optional
61+
# The path to a dependency file: pom.xml, build.gradle, build.sbt, etc. This option can be used with the `cache` option. If this option is omitted, the action searches for the dependency file in the entire repository. This option supports wildcards and a list of file names for caching multiple dependencies.
62+
cache-dependency-path: # optional
63+
# Workaround to pass job status to post job step. This variable is not intended for manual setting
64+
job-status: # optional, default is ${{ job.status }}
65+
# The token used to authenticate when fetching version manifests hosted on github.com, such as for the Microsoft Build of OpenJDK. 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.
66+
token: # optional, default is ${{ github.server_url == 'https://github.com' && github.token || '' }}
67+
# Name of Maven Toolchain ID if the default name of "${distribution}_${java-version}" is not wanted. See examples of supported syntax in Advanced Usage file
68+
mvn-toolchain-id: # optional
69+
# Name of Maven Toolchain Vendor if the default name of "${distribution}" is not wanted. See examples of supported syntax in Advanced Usage file
70+
mvn-toolchain-vendor: # optional
71+
- name: Setup .NET Core SDK
72+
uses: actions/setup-dotnet@v5.0.0
73+
with:
74+
# Optional SDK version(s) to use. If not provided, will install global.json version when available. Examples: 2.2.104, 3.1, 3.1.x, 3.x, 6.0.2xx
75+
dotnet-version: # optional
76+
# Optional quality of the build. The possible values are: daily, signed, validated, preview, ga.
77+
dotnet-quality: # optional
78+
# Optional global.json location, if your global.json isn't located in the root of the repo.
79+
global-json-file: # optional
80+
# Optional package source for which to set up authentication. Will consult any existing NuGet.config in the root of the repo and provide a temporary NuGet.config using the NUGET_AUTH_TOKEN environment variable as a ClearTextPassword
81+
source-url: # optional
82+
# Optional OWNER for using packages from GitHub Package Registry organizations/users other than the current repository's owner. Only used if a GPR URL is also provided in source-url
83+
owner: # optional
84+
# Optional NuGet.config location, if your NuGet.config isn't located in the root of the repo.
85+
config-file: # optional
86+
# Optional input to enable caching of the NuGet global-packages folder
87+
cache: # optional
88+
# Used to specify the path to a dependency file: packages.lock.json. Supports wildcards or a list of file names for caching multiple dependencies.
89+
cache-dependency-path: # optional
90+
- name: Powerpipe Check
91+
# You may pin to the exact commit or the version.
92+
# uses: turbot/powerpipe-action-check@0b905d17e8b6970bc39bcd347c053992bd8770de
93+
uses: turbot/powerpipe-action-check@v1.0.1
94+
with:
95+
# Mod URL to clone. Examples: https://github.com/turbot/steampipe-mod-aws-compliance
96+
mod-url:
97+
# Mod branch or tag to clone. Defaults to 'main'. Examples: main, release/v0.7, v0.5, 'v1.0-beta.0
98+
mod-branch: # optional, default is main
99+
# Space separated list of controls to run. Can also pass in as a multi-line string.
100+
controls: # optional
101+
# Space separated list of benchmarks to run. Can also pass in as a multi-line string.
102+
benchmarks: # optional
103+
# Database connection string to use for running controls and benchmarks.
104+
database: # optional
105+
# Set this to 'anyone_with_link' or 'workspace' to create a snapshot in Turbot Pipes with the specified visibility.
106+
pipes-snapshot-visibility: # optional
107+
# The Turbot Pipes token used to save snapshots. Can also be set via the PIPES_TOKEN environment variable (https://powerpipe.io/docs/reference/env-vars/pipes_token).
108+
pipes-token: # optional
109+
# Space separated args to add to the 'powerpipe control/benchmark run' command.
110+
additional-args: # optional
111+
# Comma separated export types to save as artifacts. Example: 'csv,json'. For all valid formats please see https://powerpipe.io/docs/reference/cli/control#output-formats.
112+
artifact-exports: # optional
113+
# GitHub token used to download the Powerpipe mod, upload artifacts, and create annotations.
114+
github-token: # optional, default is ${{ github.token }}
115+
116+
- name: Deploy to Deno Deploy
117+
# You may pin to the exact commit or the version.
118+
# uses: denoland/deployctl@7bded90d0d09cd99bbfb513966146315db97618b
119+
uses: denoland/deployctl@1.13.1
120+
with:
121+
# The name or ID of the project to deploy
122+
project:
123+
# The path or URL to the entrypoint file
124+
entrypoint:
125+
# The path or URL to an import map file
126+
import-map: # optional
127+
# Only upload files that match this pattern (multiline and/or comma-separated)
128+
include: # optional
129+
# Exclude files that match this pattern (multiline and/or comma-separated)
130+
exclude: # optional
131+
# The path to the directory containing the code and assets to upload
132+
root: # optional
133+
134+
- name: rhythm-box
135+
# You may pin to the exact commit or the version.
136+
# uses: Aveek-Saha/spotify-box@ea77f23943d887183b3a9989a26b03111f3ff378
137+
uses: Aveek-Saha/spotify-box@v1
138+
- name: YouTube songs
139+
# You may pin to the exact commit or the version.
140+
# uses: kubawerlos/youtube-songs@c7a7a2466e54a1ac574e2b2597f1b9ed0476737d
141+
uses: kubawerlos/youtube-songs@v1.1.1
142+
- name: Get Image ID
143+
# You may pin to the exact commit or the version.
144+
# uses: sapvs/docker-image-id@8c4ae5574d52b410d972d011eea7b9bf31e03e2f
145+
uses: sapvs/docker-image-id@v1.0.0
146+
with:
147+
# Image name e.g. alpine:latest
148+
image_name: # default is alpine:latest
149+
- name: YouTube Videos Readme
150+
# You may pin to the exact commit or the version.
151+
# uses: GalvinPython/youtube-readme@10c9af289c1439f0d3bec3c0c8d264bb79ffc3ba
152+
uses: GalvinPython/youtube-readme@1.0
153+
with:
154+
# YouTube Channel ID
155+
youtube_channel_id:
156+
# Path to the README file
157+
readme_file_path: # default is README.md
158+
- name: SmartcloudAction
159+
# You may pin to the exact commit or the version.
160+
# uses: Resnovas/smartcloud@dd13ed741b701f384fc63cf806557d14cade574c
161+
uses: Resnovas/smartcloud@1.0.0-beta.8
162+
with:
163+
# The GITHUB_TOKEN secret
164+
GITHUB_TOKEN:
165+
# Config file path
166+
config: # optional, default is .github/config.json
167+
# JSON string with configuration data
168+
configJson: # optional, default is
169+
# The ref to use when getting the config
170+
configRef: # optional, default is
171+
# Fill Empty context configuration with shared configs
172+
fillEmpty: # optional, default is true
173+
# Skip deleting labels from repository
174+
skipDelete: # optional, default is false
175+
# Allows the running off action without it doing effects
176+
dryRun: # optional, default is false
177+
- name: Automatically pay Contributors in XRP via PayId
178+
# You may pin to the exact commit or the version.
179+
# uses: hammertoe/payid_xrp_action@5aa540cdff8788ecc4ec6b857e072d6d2319bb9e
180+
uses: hammertoe/payid_xrp_action@2.0
181+
with:
182+
# Amount of XRP in drops to pay each PayId found
183+
amount: # optional, default is 1000000
184+
# The commit message(s) to scan for PayIds
185+
commit_log:
186+
#
187+
wallet_secret:
188+
# Maximum number of drops to pay out
189+
max_payout: # optional, default is 10000000
190+
# Environment to use, TESTNET or LIVENET
191+
environment: # optional, default is TESTNET
192+
# XRP Ledger server to use
193+
server: # optional, default is test.xrp.xpring.io:50051
194+
- name: Chaucha.cl Crypto Wallet Generator Github Action
195+
# You may pin to the exact commit or the version.
196+
# uses: proyecto-chaucha/chaucha-gha-wallet-generator@efe381029274e3668bed678eb9e8205359be0653
197+
uses: proyecto-chaucha/chaucha-gha-wallet-generator@v1
198+
with:
199+
# String value to create a new wallet address. Empty value will generate a random address.
200+
value: # optional, default is
201+
- name: Nigiri Bitcoin
202+
# You may pin to the exact commit or the version.
203+
# uses: vulpemventures/nigiri-github-action@7fc63cec40cbfc113589a9ade24ab21c9107ad39
204+
uses: vulpemventures/nigiri-github-action@v1
205+
with:
206+
# nigiri version to install
207+
version: # optional, default is latest
208+
# Github repository URL of the repository with release artifacts
209+
repository_url: # optional, default is https://github.com/vulpemventures/nigiri
210+
# use --liquid flag
211+
use_liquid: # optional, default is true
212+
# use --ln flag
213+
use_ln: # optional, default is false
214+
# use --ark flag
215+
use_ark: # optional, default is false
216+
- name: Promtool action
217+
# You may pin to the exact commit or the version.
218+
# uses: MatsuriJapon/promtool-action@e9571043a7aee0a62c98e87bfad30e13517eacfa
219+
uses: MatsuriJapon/promtool-action@v1
220+
with:
221+
# Arguments to pass to promtool
222+
args: # optional
223+
- name: Novelty-PR-Notifier
224+
# You may pin to the exact commit or the version.
225+
# uses: Novelty-Technology-LLC/novelty-pr-notifier-action@5d0a5ee59e08214471aef9b1eac69edf4ccd208d
226+
uses: Novelty-Technology-LLC/novelty-pr-notifier-action@v1.0.2
227+
with:
228+
# Google Chat Web Hook
229+
webhook:
230+
# Repository Name
231+
repoName:
232+
# PR Title
233+
prTitle:
234+
# Pull Request Number
235+
prNumber:
236+
# PR HTML URL
237+
prHtmlUrl:
238+
# Source Branch From where the PR is created
239+
sourceBranch:
240+
# Target Branch or Base Branch
241+
targetBranch:
242+
# PR creator
243+
creator:
244+
# PR reviewers
245+
reviewer:
246+
# PR assigner
247+
assigner:
248+
# Event Action
249+
eventAction:
250+
- name: Frama-C-Eva
251+
# You may pin to the exact commit or the version.
252+
# uses: Frama-C/github-action-eva-sarif@9843daa7edda4e2d3d3cae88f3a7c2a2416f0ccc
253+
uses: Frama-C/github-action-eva-sarif@v2
254+
with:
255+
# Directory containing the Frama-C makefile (default: .frama-c)
256+
fc-dir: # optional, default is .frama-c
257+
# Makefile for Frama-C (must be inside [fc-dir])
258+
fc-makefile: # optional, default is GNUmakefile
259+
# Name of the Eva target in the makefile
260+
eva-target: # default is main.eva
261+
- name: EBS record
262+
# You may pin to the exact commit or the version.
263+
# uses: seongilp/autoebs@7d7ad639d56e0fd28f7ac6e1c96863117a1dbd4d
264+
uses: seongilp/autoebs@v1
265+
- name: EBS record
266+
# You may pin to the exact commit or the version.
267+
# uses: seongilp/autoebs@7d7ad639d56e0fd28f7ac6e1c96863117a1dbd4d
268+
uses: seongilp/autoebs@v1
269+
- name: social-readme
270+
# You may pin to the exact commit or the version.
271+
# uses: zylele/social-readme@0db30146fb5cba3ef06705e46067f2a6829fd212
272+
uses: zylele/social-readme@v3.0.0
273+
with:
274+
# GitHub access token with Repo scope
275+
gh_token: # default is ${{ github.token }}
276+
# Your GitHub repository
277+
repository: # optional, default is ${{ github.repository }}
278+
# commit message
279+
commit_message: # optional, default is Updated social rss by social-readme
280+
# file path
281+
file_path: # optional
282+
# Your Blog rss link
283+
blog_rss_link: # optional
284+
# Your Blog LIMIT
285+
blog_limit: # optional, default is 5
286+
# Your Douban name
287+
douban_name: # optional
288+
# Your Douban LIMIT
289+
douban_limit: # optional, default is 5
290+

0 commit comments

Comments
 (0)