Dynamic Template #540
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
name: Dynamic Template | |
on: | |
create: | |
workflow_dispatch: | |
jobs: | |
update_templates: | |
name: "Update Templates" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@main | |
- name: "💾 Github Repository Metadata" | |
uses: varunsridharan/action-repository-meta@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "💫 Dynamic Template Render" | |
uses: varunsridharan/action-dynamic-readme@main | |
with: | |
GLOBAL_TEMPLATE_REPOSITORY: $GITHUB_REPOSITORY | |
files: | | |
README.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |