Skip to content

feat(CI): suppress generated files in PR diffs #1

feat(CI): suppress generated files in PR diffs

feat(CI): suppress generated files in PR diffs #1

Workflow file for this run

name: 'Generate'
on:
# push:
# branches:
# - main
pull_request:
branches:
- main
jobs:
generate:
runs-on: ubuntu-22.04
permissions:
checks: write
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
- run: |
make proto-generate
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "generated"
# git push