Allow building CLI with elixir 1.18.x #599
Workflow file for this run
This file contains hidden or 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: Run gazelle (Scheduled) | ||
| on: | ||
| schedule: | ||
| - cron: '0 4 * * *' | ||
| jobs: | ||
| bazel-run-gazelle: | ||
| name: bazel run gazelle | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| max-parallel: 1 | ||
| fail-fast: false | ||
| matrix: | ||
| target_branch: | ||
| - main | ||
| <<<<<<< HEAD | ||
| - v3.12.x | ||
| - v3.11.x | ||
| - v3.10.x | ||
| ======= | ||
| - v4.0.x | ||
| - v3.13.x | ||
| - v3.12.x | ||
| >>>>>>> 5086e283b (Allow building CLI with elixir 1.18.x) | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - name: CHECKOUT REPOSITORY | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| ref: ${{ matrix.target_branch }} | ||
| - name: Configure Erlang | ||
| uses: erlef/setup-beam@v1 | ||
| with: | ||
| otp-version: 26.2 | ||
| elixir-version: 1.15 | ||
| - name: BAZEL RUN GAZELLE | ||
| run: | | ||
| bazel run gazelle | ||
| - name: CREATE PULL REQUEST | ||
| uses: peter-evans/[email protected] | ||
| with: | ||
| token: ${{ secrets.REPO_SCOPED_TOKEN }} | ||
| committer: GitHub <[email protected]> | ||
| author: GitHub <[email protected]> | ||
| title: bazel run gazelle | ||
| 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 | ||