D2 fmt #14
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
# vim:ts=2:sts=2:sw=2:et | |
name: D2 fmt | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '*.d2' | |
#- Makefile | |
- .github/workflows/d2-fmt.yaml # this workflow | |
workflow_dispatch: | |
inputs: | |
debug: | |
type: boolean | |
required: false | |
default: false | |
permissions: | |
contents: write # Grant write permission to allow pushing changes | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -euxo pipefail {0} | |
jobs: | |
d2_fmt: | |
name: D2 fmt | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
if: ( github.ref_name == 'master' || github.ref_name == 'main' ) && github.event.repository.fork == false | |
steps: | |
- name: Environment | |
run: env | sort | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: 'true' | |
# Ensure the script has execute permissions | |
- name: Set execute permission for ci_bootstrap.sh | |
run: chmod +x setup/ci_bootstrap.sh | |
- name: Bootstrap | |
run: setup/ci_bootstrap.sh | |
- name: Install D2 Dependencies | |
run: make install-d2 | |
- name: D2 fmt | |
run: make fmt | |
- name: Check for formatting changes | |
run: | | |
if ! git diff --quiet; then | |
echo "There are formatting changes:" | |
git diff | |
git config user.name "GitHub Actions" | |
git config user.email "actions@github.com" | |
git add . | |
git commit -m "Auto-format code during GitHub Actions run" | |
git push | |
fi |