Skip to content

Commit

Permalink
[RN][CI] Add ci job to check if nightly succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi committed Jul 18, 2024
1 parent c82edec commit 2a28922
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/check-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check Nigthlies
description: This jobs runs every day 2 hours after the nightly job and its purpose is to report a failure in case the nightly failed to be published. We are going to hook this to an internal automation.

on:
workflow_dispatch:
pull_request: # Remove this after testing
# nightly build @ 4:15 AM UTC
schedule:
- cron: '15 4 * * *'

jobs:
check-nightly:
runs-on: ubuntu-latest
if: github.repository == 'facebook/react-native'
steps:
- name: Check nightly
- run: |
TODAY=$(date "+%Y%m%d")
echo "Checking nightly for $TODAY"
NIGHTLY="$(npm view react-native | grep $TODAY)"
if [[ -z $NIGHTLY ]]; then
echo 'No nightly'
exit 1
else
echo 'Nightly Worked, All Good!'
fi

0 comments on commit 2a28922

Please sign in to comment.