mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-11-20 11:28:35 -05:00
fix: prevent forks from auto updating readme
ensure that the Rebuild commit only applies to the ipfs/awesome-ipfs repo
This commit is contained in:
parent
8f9a82dd5d
commit
8078b823b4
1 changed files with 1 additions and 2 deletions
3
.github/workflows/data.yml
vendored
3
.github/workflows/data.yml
vendored
|
@ -10,14 +10,13 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
if: "!contains(github.event.head_commit.message, '[skip ci]') && ${{ github.repository == 'ipfs/awesome-ipfs' }}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.4
|
- uses: actions/checkout@v2.3.4
|
||||||
- uses: actions/setup-node@v1.4.4
|
- uses: actions/setup-node@v1.4.4
|
||||||
with:
|
with:
|
||||||
node-version: 13
|
node-version: 13
|
||||||
- name: build
|
- name: build
|
||||||
# env:
|
|
||||||
run: |
|
run: |
|
||||||
npm --version
|
npm --version
|
||||||
node --version
|
node --version
|
||||||
|
|
Loading…
Reference in a new issue