Skip to content

Commit

Permalink
ci: run workflows only in this repo
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz authored Jul 16, 2023
1 parent a63bdab commit 2b81eb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ concurrency:
jobs:
action:
runs-on: ubuntu-latest
if: github.repository == 'capawesome-team/capacitor-mlkit'
steps:
- uses: dessant/lock-threads@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/needs-reply-remove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
needs-reply:
runs-on: ubuntu-latest
if: github.event.comment.author_association != 'MEMBER'
if: github.repository == 'capawesome-team/capacitor-mlkit' && github.event.comment.author_association != 'MEMBER'
steps:
- name: Remove needs-reply label
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/needs-reply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ concurrency:
jobs:
needs-reply:
runs-on: ubuntu-latest
if: github.repository == 'capawesome-team/capacitor-mlkit'
steps:
- name: Close old issues that need reply
uses: dwieeb/needs-reply@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
if: github.repository == 'capawesome-team/capacitor-mlkit'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 2b81eb6

Please sign in to comment.