Skip to content

Build(deps): Bump julia-actions/setup-julia from 2.6.0 to 2.6.1 (#47) #33

Build(deps): Bump julia-actions/setup-julia from 2.6.0 to 2.6.1 (#47)

Build(deps): Bump julia-actions/setup-julia from 2.6.0 to 2.6.1 (#47) #33

Workflow file for this run

name: Format Fix
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
# Skip intermediate builds: all builds except for builds on the `main` branch
# Cancel intermediate builds: only pull request builds
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/main' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: write
pull-requests: write
jobs:
fix:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- uses: julia-actions/setup-julia@5c9647d97b78a5debe5164e9eec09d653d29bd71 # v2.6.1
with:
version: '1'
- run: make format-fix
- name: Create pull request
id: create_pr
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: '🤖 Automatically format the source code files'
title: '🤖 Automatically format the source code files'
body: |-
This pull request formats the source code files using the JuliaFormatter package.
Note: CI will not automatically run on this PR. Please open and close this PR to trigger CI.
branch: bot/format/${{ github.ref }}
delete-branch: true