Update for Keyfactor v12. Still completely compatible with early ver… #75
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: Update README | |
on: [push, workflow_dispatch] | |
jobs: | |
update_readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: cuchi/[email protected] | |
with: | |
template: README.md.tpl | |
output_file: README.md | |
data_file: integration-manifest.json | |
env: | |
GITHUB_TOKEN: ${{ secrets.SDK_SYNC_PAT }} | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
push_options: '--force' | |
commit_message: Update generated README | |
commit_user_name: Keyfactor | |
commit_user_email: [email protected] | |
commit_author: Keyfactor <[email protected]> |