mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +00:00
ci(auto_assign): only run from stremio repo
Some checks failed
Build / build (push) Has been cancelled
Some checks failed
Build / build (push) Has been cancelled
This commit is contained in:
parent
90f834e893
commit
1e241c7926
1 changed files with 2 additions and 2 deletions
4
.github/workflows/auto_assign.yml
vendored
4
.github/workflows/auto_assign.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
# Auto assign PR to author
|
# Auto assign PR to author
|
||||||
- name: Auto Assign PR to Author
|
- name: Auto Assign PR to Author
|
||||||
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
|
if: github.event.pull_request.head.repo.fork == false && github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
|
||||||
uses: actions/github-script@v8
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
|
|
||||||
# Dynamic labeling based on PR/Issue title
|
# Dynamic labeling based on PR/Issue title
|
||||||
- name: Label PRs and Issues
|
- name: Label PRs and Issues
|
||||||
if: github.actor != 'dependabot[bot]'
|
if: github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]'
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
uses: actions/github-script@v8
|
uses: actions/github-script@v8
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue