mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-08-13 12:33:30 +02:00
workflows: run issue/wiki automation only in the upstream repo
This commit is contained in:
parent
c0d62eb934
commit
a9590c5bd7
2 changed files with 4 additions and 2 deletions
3
.github/workflows/blacklist-command.yml
vendored
3
.github/workflows/blacklist-command.yml
vendored
|
|
@ -21,7 +21,8 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
blacklist:
|
||||
if: startsWith(github.event.issue.title, 'blacklist:')
|
||||
# Upstream only: forks have no <fork>.wiki repository to push to.
|
||||
if: github.repository == 'acmesh-official/acme.sh' && startsWith(github.event.issue.title, 'blacklist:')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check authorization
|
||||
|
|
|
|||
3
.github/workflows/revert-command.yml
vendored
3
.github/workflows/revert-command.yml
vendored
|
|
@ -21,7 +21,8 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
revert:
|
||||
if: startsWith(github.event.issue.title, 'revert:')
|
||||
# Upstream only: forks have no <fork>.wiki repository to push to.
|
||||
if: github.repository == 'acmesh-official/acme.sh' && startsWith(github.event.issue.title, 'revert:')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check authorization
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue