Skip to content

[ImgBot] Optimize images #15

[ImgBot] Optimize images

[ImgBot] Optimize images #15

Workflow file for this run

name: Python checks
on:
pull_request:
types: [assigned]
branches:
- "*"
workflow_dispatch:
inputs:
placeholder:
description: "placeholder, no effect"
required: false
jobs:
check_license_and_format:

Check failure on line 13 in .github/workflows/dotnet-format.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dotnet-format.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
name: License and format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: format
id: format_check
run: |
bash ./scripts/format.sh --git
- name: install clang-format
id: clang-format
run: sudo apt install clang-format
- name: check for changes
run: |
if git diff --exit-code; then
echo "has_changes=false" >> $GITHUB_ENV
else
echo "has_changes=true" >> $GITHUB_ENV
fi
- name: Git push
if: ${{ env.has_changes == 'true' }}
id: git_push
run: |
git config --global user.email "yidazhang1@gmail.com"
git config --global user.name "ci-bot"
git add -u
git commit -m "auto format by CI"
git push