Api Search in text editor #1
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: Regenerate Type Definitions | |
on: | |
pull_request | |
jobs: | |
atlasUpdate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr checkout ${{ github.event.pull_request.number }} | |
- name: Install LuaLS | |
run: | | |
brew install lua-language-server | |
- name: Regenerate Type Definitions | |
run: | | |
cd .github/scripts/docs | |
./update-documentation-files.sh | |
shell: bash | |
- name: Push Changes to PR | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | |
git commit -am "Update generated types from ${GITHUB_SHA:0:7}" || true | |
git push |