Browse Source

Merge pull request #6754 from acmesh-official/dev

sync
master
neil 2 days ago
committed by GitHub
parent
commit
f39d066ced
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/pr_dns.yml
  2. 1
      .github/workflows/pr_notify.yml
  3. 1
      .github/workflows/wiki-monitor.yml
  4. 2
      acme.sh

1
.github/workflows/pr_dns.yml

@ -11,6 +11,7 @@ on:
jobs: jobs:
welcome: welcome:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.actor != 'neilpang'
steps: steps:
- uses: actions/github-script@v6 - uses: actions/github-script@v6
with: with:

1
.github/workflows/pr_notify.yml

@ -13,6 +13,7 @@ on:
jobs: jobs:
welcome: welcome:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.actor != 'neilpang'
steps: steps:
- uses: actions/github-script@v6 - uses: actions/github-script@v6
with: with:

1
.github/workflows/wiki-monitor.yml

@ -6,6 +6,7 @@ on:
jobs: jobs:
notify: notify:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.actor != 'neilpang'
steps: steps:
- name: Checkout wiki repository - name: Checkout wiki repository
uses: actions/checkout@v4 uses: actions/checkout@v4

2
acme.sh

@ -2358,6 +2358,7 @@ _setopt() {
fi fi
if [ ! -f "$__conf" ]; then if [ ! -f "$__conf" ]; then
touch "$__conf" touch "$__conf"
chmod 600 "$__conf"
fi fi
if [ -n "$(_tail_c 1 <"$__conf")" ]; then if [ -n "$(_tail_c 1 <"$__conf")" ]; then
echo >>"$__conf" echo >>"$__conf"
@ -6671,6 +6672,7 @@ _initconf() {
#NO_TIMESTAMP=1 #NO_TIMESTAMP=1
" >"$ACCOUNT_CONF_PATH" " >"$ACCOUNT_CONF_PATH"
chmod 600 "$ACCOUNT_CONF_PATH"
fi fi
} }

Loading…
Cancel
Save