Skip to content

Commit

Permalink
修复判断条件导致跳过执行
Browse files Browse the repository at this point in the history
  • Loading branch information
zhonghuaifang committed Nov 15, 2022
1 parent cc4c5ed commit 419f9bc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/10000.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bika.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bilibili.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iqiyi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tieba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v2ex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v_video.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
if: ${{ github.event.repository.owner.id }} == ${{ github.event.sender.id }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js 10.x
Expand Down

0 comments on commit 419f9bc

Please sign in to comment.