Skip to content

Commit b98995c

Browse files
committed
Init
0 parents  commit b98995c

File tree

1,866 files changed

+59380
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,866 files changed

+59380
-0
lines changed

.github/dependabot.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
#
5+
https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "" # See documentation for possible values
10+
directory: "/" # Location of package manifests
11+
schedule:
12+
interval: "weekly"

.github/workflows/main.tmp

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: purge jsdelivr cache
2+
3+
on:
4+
release:
5+
types: [created]
6+
push:
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: purge jsdelivr cache
14+
run: |
15+
curl https://purge.jsdelivr.net/gh/jacyl4/de_GWD@main/client

.github/workflows/sha256sum.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: checkSUM
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
13+
- name: sha256sum
14+
run: |
15+
chmod +x sha256sum
16+
./sha256sum
17+
18+
- name: Commit
19+
run: |
20+
git config --global user.email jacyl4@gmail.com
21+
git config --global user.name jacyl4
22+
git add ./resource
23+
git commit -am "Auto sha256sum"
24+
25+
- name: Push
26+
uses: ad-m/github-push-action@master
27+
with:
28+
github_token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

0 commit comments

Comments
 (0)