summaryrefslogtreecommitdiff
path: root/.github/workflows/gazelle-scheduled.yaml
blob: aedcb104e13997be6ae862b41219b0c19e5fec9d (plain)
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
name: Run gazelle (Scheduled)
on:
  schedule:
  - cron: '0 4 * * *'
jobs:
  bazel-run-gazelle:
    name: bazel run gazelle
    runs-on: ubuntu-20.04
    strategy:
      max-parallel: 1
      fail-fast: false
      matrix:
        target_branch:
        - main
        - v3.12.x
        - v3.11.x
        - v3.10.x
    timeout-minutes: 10
    steps:
    - name: CHECKOUT REPOSITORY
      uses: actions/checkout@v3
      with:
        ref: ${{ matrix.target_branch }}
    - name: BAZEL RUN GAZELLE
      run: |
        bazel run gazelle
    - name: CREATE PULL REQUEST
      uses: peter-evans/create-pull-request@v5.0.0
      with:
        token: ${{ secrets.REPO_SCOPED_TOKEN }}
        committer: GitHub <noreply@github.com>
        author: GitHub <noreply@github.com>
        title: Adopt otp ${{ steps.fetch-version.outputs.VERSION }}
        body: >
          Automated changes created by
          ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
          using the [create-pull-request](https://github.com/peter-evans/create-pull-request)
          GitHub action in the ${{ github.workflow }} workflow.
        commit-message: |
          bazel run gazelle
        branch: gazelle-${{ matrix.target_branch }}
        delete-branch: true