forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not attempt to comment on PRs when on forks (facebook#36316)
Summary: I'm gating this workflow to run only upstream as I'm receiving notifications that it fails on my fork. We don't want to run this workflow on forks at all hence we can add a `if:` there. ## Changelog [INTERNAL] - Do not attempt to comment on PRs when on forks Pull Request resolved: facebook#36316 Test Plan: If Github Actions UI is green, we're good to go Reviewed By: cipolleschi Differential Revision: D43657315 Pulled By: cortinico fbshipit-source-id: 8fb260d142a43375bd9a3b10eac235550a6aecb0
- Loading branch information
1 parent
0f56cee
commit d56bd11
Showing
6 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ jobs: | |
issues: write # for react-native-community/actions-apply-version-label to label issues | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
if: github.repository == 'facebook/react-native' | ||
|
||
steps: | ||
- uses: react-native-community/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters