summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-01-04 10:57:23 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-01-04 11:00:15 +1000
commitbcd238a0270f593283a5c502f99f8b9317e7963d (patch)
tree70e64955bf49ee33ce580bc0316f42bd55226723 /.github
parentc5104c3dc1b1d1e57d0d964a07575a7ebc3a5ed2 (diff)
.github/workflows/update-terraform-providers.yml: init
weekly update of terraform providers which can also be run manually
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/update-terraform-providers.yml47
1 files changed, 47 insertions, 0 deletions
diff --git a/.github/workflows/update-terraform-providers.yml b/.github/workflows/update-terraform-providers.yml
new file mode 100644
index 000000000000..58a08aa111ca
--- /dev/null
+++ b/.github/workflows/update-terraform-providers.yml
@@ -0,0 +1,47 @@
+name: "Update terraform-providers"
+
+on:
+ schedule:
+ - cron: "14 3 * * 1"
+ workflow_dispatch:
+
+jobs:
+ tf-providers:
+ if: github.repository_owner == 'NixOS' && github.ref == 'refs/heads/master' # ensure workflow_dispatch only runs on master
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: cachix/install-nix-action@v16
+ - name: setup
+ id: setup
+ run: |
+ echo ::set-output name=title::"terraform-providers: update $(date -u +"%Y-%m-%d")"
+ - name: update terraform-providers
+ run: |
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git config user.name "github-actions[bot]"
+ pushd pkgs/applications/networking/cluster/terraform-providers
+ ./update-all-providers
+ git commit -m "${{ steps.setup.outputs.title }}" providers.json
+ popd
+ - name: create PR
+ uses: peter-evans/create-pull-request@v3
+ with:
+ body: |
+ Automatic update of terraform providers.
+
+ Created by [update-terraform-providers](https://github.com/NixOS/nixpkgs/blob/master/.github/workflows/update-terraform-providers.yml) action.
+
+ @ofborg build terraform-full
+ branch: terraform-providers-update
+ delete-branch: false
+ draft: true
+ title: ${{ steps.setup.outputs.title }}
+ token: ${{ secrets.GITHUB_TOKEN }}
+ - name: comment on failure
+ uses: peter-evans/create-or-update-comment@v1
+ if: ${{ failure() }}
+ with:
+ issue-number: 153416
+ body: |
+ Automatic update of terraform providers [failed](https://github.com/NixOS/nixpkgs/actions/runs/${{ github.run_id }}).