summary refs log tree commit diff
path: root/.github/workflows/update-terraform-providers.yml
blob: 593ddf14f3eca9b48abfc7e53d7c698c2ba862bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: "Update terraform-providers"

on:
  #schedule:
  #  - cron: "14 3 * * 0"
  workflow_dispatch:

permissions:
  contents: read

jobs:
  tf-providers:
    permissions:
      contents: write  # for peter-evans/create-pull-request to create branch
      pull-requests: write  # for peter-evans/create-pull-request to create a PR, for peter-evans/create-or-update-comment to create or update comment
    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@v3
      - uses: cachix/install-nix-action@v17
        with:
          nix_path: nixpkgs=channel:nixpkgs-unstable
      - 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 --no-build
          git commit -m "${{ steps.setup.outputs.title }}" providers.json
          popd
      - name: create PR
        uses: peter-evans/create-pull-request@v4
        with:
          body: |
            Automatic update by [update-terraform-providers](https://github.com/NixOS/nixpkgs/blob/master/.github/workflows/update-terraform-providers.yml) action.

            Check that all providers build with:
            ```
            @ofborg build terraform.full
            ```
          branch: terraform-providers-update
          delete-branch: false
          labels: "2.status: work-in-progress"
          title: ${{ steps.setup.outputs.title }}
          token: ${{ secrets.GITHUB_TOKEN }}
      - name: comment on failure
        uses: peter-evans/create-or-update-comment@v2
        if: ${{ failure() }}
        with:
          issue-number: 153416
          body: |
            Automatic update of terraform providers [failed](https://github.com/NixOS/nixpkgs/actions/runs/${{ github.run_id }}).