Update yasio to latest #497
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: genbindings | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '**/*.md.in' | |
- 'docs/**' | |
- '.github/workflows/publish.yml' | |
- 'tools/ci/make-pkg.ps1' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.5' | |
- name: Build | |
run: tools\ci\genbindings.ps1 | |
- name: Create pull request | |
if: ${{ env.BINDING_NO_CHANGES != 'true' }} | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.AX_BOT_TOKEN }} | |
push-to-fork: axmol-bot/axmol | |
commit-message: Update luabindings for commit ${{ env.LAST_COMMIT_HASH }} | |
committer: 'GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>' | |
author: 'axmol-bot <[email protected]>' | |
signoff: false | |
branch: luabindings_for_${{ env.LAST_COMMIT_HASH }} | |
delete-branch: true | |
title: 'Update luabindings for commit ${{ env.LAST_COMMIT_HASH }}' | |
body: | | |
RT | |
- Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
labels: | | |
thirdparty | |
automated pr | |
pinned | |
assignees: axmol-bot | |
reviewers: halx99 | |
draft: false | |
- name: Check outputs | |
if: ${{ steps.cpr.outputs.pull-request-number }} | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |