Skip to content

Commit

Permalink
Update update_readme.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
costateixeira authored Dec 5, 2023
1 parent 547f9c2 commit e56e7ee
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/update_readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ name: Update README

on:
workflow_call: # Reusable by other workflows
inputs:
repositoryOwner:
required: true
type: string
repositoryName:
required: true
type: string
push:
branches-ignore:
- 'gh-pages'
Expand All @@ -12,8 +19,8 @@ jobs:
update-readme-badges:
runs-on: ubuntu-latest
env:
REPOSITORY_OWNER: ${{ github.repository_owner }}
REPOSITORY_NAME: ${{ github.event.repository.name }}
REPOSITORY_OWNER: ${{ inputs.repositoryOwner }}
REPOSITORY_NAME: ${{ inputs.repositoryName }}

steps:
- name: Checkout repository
Expand Down

0 comments on commit e56e7ee

Please sign in to comment.