Skip to content

Update gofmt.yml

Update gofmt.yml #3

Workflow file for this run

name: auto-format
on: workflow_dispatch
jobs:
format:
# Check if the PR is not from a fork
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: gofmt
run: gofmt -s -w .
- name: Check for modified files
id: git-check
run: echo "modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT

Check failure on line 16 in .github/workflows/gofmt.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gofmt.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- name: Push changes
if: steps.git-check.outputs.modified == 'true'
- uses: EndBug/add-and-commit@v9
with:
author_name: micah teeuws
author_email: [email protected]
message: 'format go files'