Skip to content

Update README.md

Update README.md #56

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on pull request events but only for the "main" branch
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
wait-for-status:
runs-on: ubuntu-latest
steps:
- name: Wait for external status
uses: developerproductivity/data-ingestion/osci@main
with:
desired_context: 'codecov/patch'
token: ${{ secrets.GITHUB_TOKEN }}
max_retries: 15
- name: Display final status
env:
FINAL_STATE: ${{ steps['wait-for-status'].outputs.final_state }}
run: |
echo "External status final state: $FINAL_STATE"