KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
tfupdate-github-actions
★ 9
Open GitHub ↗
tfupdate Github Actions
Download README (.md)
Explore Similar Repositories
easyDemo
:
收集整理并实现各种功能,持续更新
yolov3-face
:
Face detection using keras-yolov3
compgen
:
No description available.
apply-modifiers-w-shape-keys
:
Repository to update the add-on ApplyModifierForObjectWithShapeKeys to Blender 2.8x.
svelte-typescript-storybook-template
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tfupdate-github-actions
?
Download (.md)
# tfupdate-github-actions Github Actions for [tfupdate](https://github.com/minamijoyo/tfupdate). This action runs tfupdate, and create Pull Requests if new versions of terraform or providers are found. ## Usage ``` on: schedule: - cron: '0 0 * * *' jobs: test_terraform_job: runs-on: ubuntu-latest name: Update terraform versions steps: - name: "Checkout" uses: actions/checkout@v1 - name: tfupdate uses: daisaru11/tfupdate-github-actions@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} tfupdate_subcommand: terraform tfupdate_path: './workspaces' test_provider_job: runs-on: ubuntu-latest name: Update provider versions steps: - name: "Checkout" uses: actions/checkout@v1 - name: tfupdate uses: daisaru11/tfupdate-github-actions@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} tfupdate_subcommand: provider tfupdate_path: './workspaces' tfupdate_provider_name: aws ``` You can see examples of Pull Requests to be created [here](https://github.com/daisaru11/tfupdate-github-actions-example/pulls).