Move approval to separate deploy workflow
Summary: Closes https://github.com/facebook/react-native/pull/17916 Differential Revision: D6943605 Pulled By: hramos fbshipit-source-id: 0e86f01aa38c15e5bc179c5e517f079eb34d495f
This commit is contained in:
parent
4f078d3fe2
commit
40b17926bb
|
@ -537,7 +537,7 @@ jobs:
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
|
|
||||||
build:
|
test:
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
# Checkout repo and run Yarn
|
# Checkout repo and run Yarn
|
||||||
|
@ -581,16 +581,19 @@ workflows:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
requires:
|
requires:
|
||||||
- checkout_code
|
- checkout_code
|
||||||
|
|
||||||
# If we are on a stable branch, deploy to `npm`
|
# Run code checks
|
||||||
|
- analyze_pr:
|
||||||
|
filters: *filter-ignore-master-stable
|
||||||
|
requires:
|
||||||
|
- checkout_code
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
jobs:
|
||||||
|
# If we are on a stable branch, wait for approval to deploy to npm
|
||||||
- approve_publish_npm_package:
|
- approve_publish_npm_package:
|
||||||
|
filters: *filter-only-stable
|
||||||
type: approval
|
type: approval
|
||||||
- publish_npm_package:
|
- publish_npm_package:
|
||||||
filters: *filter-only-stable
|
|
||||||
requires:
|
requires:
|
||||||
- approve_publish_npm_package
|
- approve_publish_npm_package
|
||||||
|
|
||||||
- analyze_pr:
|
|
||||||
filters: *filter-ignore-master-stable
|
|
||||||
requires:
|
|
||||||
- checkout_code
|
|
Loading…
Reference in New Issue