Skip to content

Increase wait time in ProperCopy to avoid flakiness #6

Increase wait time in ProperCopy to avoid flakiness

Increase wait time in ProperCopy to avoid flakiness #6

name: Generate Async code
on:
pull_request_target:
paths:
- '**.cs'
permissions: {}
jobs:
generate-async:
runs-on: ubuntu-latest
env:
IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
token: ${{ secrets.NHIBERNATE_BOT_TOKEN }}
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Generate Async code
run: |
dotnet tool restore
dotnet restore src
dotnet async-generator
- name: Push changes
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
if [[ -z "$(git status --porcelain)" ]]; then
echo "No changes to commit"
exit 0
fi
git add -A
git commit -am "Generate async files"
git push origin HEAD:${{ github.event.pull_request.head.ref }}