mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2026-03-22 04:33:26 +01:00
Upload test site
This commit is contained in:
20
.github/workflows/depends.yml
vendored
20
.github/workflows/depends.yml
vendored
@@ -1,20 +0,0 @@
|
||||
# Dependency Review Action
|
||||
#
|
||||
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
|
||||
#
|
||||
# Source repository: https://github.com/actions/dependency-review-action
|
||||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
|
||||
name: '🧪 Dependencies'
|
||||
on: [pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
dependency-review:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: '📦 Checkout Repository'
|
||||
uses: actions/checkout@v3
|
||||
- name: '📦 Dependency Review'
|
||||
uses: actions/dependency-review-action@v2
|
||||
37
.github/workflows/lock-threads.yml
vendored
37
.github/workflows/lock-threads.yml
vendored
@@ -1,37 +0,0 @@
|
||||
name: '🔒 Lock Threads'
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
concurrency:
|
||||
group: lock
|
||||
|
||||
jobs:
|
||||
action:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: '🔒 Lock Threads'
|
||||
- uses: dessant/lock-threads@v4
|
||||
with:
|
||||
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
||||
issue-inactive-days: '180'
|
||||
add-issue-labels: 'outdated, archived'
|
||||
issue-comment: >
|
||||
This issue has been closed due to inactivity in the last 180 days.
|
||||
Please open a new issue to bring it up again.
|
||||
issue-lock-reason: 'resolved'
|
||||
pr-inactive-days: '180'
|
||||
include-all-pr-labels: 'done'
|
||||
add-pr-labels: 'outdated, archived'
|
||||
pr-comment: >
|
||||
This pull request has been closed due to inactivity in the last 180 days.
|
||||
Please open a new PR to bring it up again.
|
||||
pr-lock-reason: 'resolved'
|
||||
process-only: 'issues, prs'
|
||||
log-output: false
|
||||
26
.github/workflows/vt-scan.yml
vendored
26
.github/workflows/vt-scan.yml
vendored
@@ -1,26 +0,0 @@
|
||||
name: '🦠 VirusTotal Scan'
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: '📦 Checkout'
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: '📦 Set up Go'
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: '1.20.6'
|
||||
- run: go version
|
||||
|
||||
- name: '🦠 Scan PDF files using VT'
|
||||
uses: crazy-max/ghaction-virustotal@v3
|
||||
with:
|
||||
vt_api_key: ${{ secrets.VT_API_KEY }}
|
||||
files: |
|
||||
export/guide.pdf
|
||||
export/guide.odt
|
||||
Reference in New Issue
Block a user