diff --git a/.github/workflows/a.c b/.github/workflows/a.c new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/a.cs b/.github/workflows/a.cs new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/automation.yaml b/.github/workflows/automation.yaml index 943175cf0..d43476237 100644 --- a/.github/workflows/automation.yaml +++ b/.github/workflows/automation.yaml @@ -3,14 +3,15 @@ name: 🤖 Automation on: pull_request_target: types: [opened, reopened] + push: jobs: - assign-author: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: toshimaru/auto-author-assign@v2.1.0 +# assign-author: +# runs-on: ubuntu-latest +# permissions: +# pull-requests: write +# steps: +# - uses: toshimaru/auto-author-assign@v2.1.0 label-lang: runs-on: ubuntu-latest diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index deb24d546..2e2fd61e9 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -16,7 +16,7 @@ jobs: files=$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.sha }}) success=true for file in $files; do - if [ "$(tail -c 1 $file | wc -l)" -eq 0 ]; then + if [ -s "$file" ] && [ "$(tail -c 1 $file | wc -l)" -eq 0 ]; then echo "- $file" >> $GITHUB_STEP_SUMMARY success=false fi