"Something went wrong" error message: include the actual value of the… #21
This file contains 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: Format | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
# Skip intermediate builds: all builds except for builds on the `master` branch | |
# Cancel intermediate builds: only pull request builds | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install the JuliaFormatter package | |
run: julia --color=yes -e 'using Pkg; Pkg.add(name = "JuliaFormatter", uuid = "98e50ef6-434e-11e9-1051-2b60c6c9e899")' | |
- name: Precompile dependencies | |
run: julia --color=yes -e 'using Pkg; Pkg.precompile()' | |
- name: Use JuliaFormatter to format the code with the BlueStyle style | |
run: julia --color=yes -e 'using JuliaFormatter; format(".", BlueStyle(); verbose = true)' | |
- name: Create pull request | |
id: create_pr | |
uses: peter-evans/create-pull-request@9825ae65b1cb54b543b938503728b432a0176d29 # v3.10.0 | |
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 close and re-open this PR in order to trigger CI. | |
branch: bot/format_pr/${{ github.ref }} | |
delete-branch: true | |
- run: echo "The pull request number is ${{ steps.create_pr.outputs.pull-request-number }}" | |
- run: echo "The pull request URL is ${{ steps.create_pr.outputs.pull-request-url }}" |