update readme #3
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 workflow uses a remote action to do some repository actions like updating the readme files | |
name: Call remote repo actions | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events for any main branch | |
push: | |
branches-ignore: | |
- 'gh-pages' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
call-update-readme: | |
uses: WorldHealthOrganization/smart-base/.github/workflows/update_readme.yml@main | |
with: | |
repositoryOwner: ${{ github.repository_owner }} | |
repositoryName: ${{ github.event.repository.name }} |