aboutsummaryrefslogtreecommitdiff
path: root/deps/raylib/.github/workflows/parse.yml
blob: 554eaf9a3c8ab5989f7930f9355c8b956198baf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Parse raylib_api

on:
  workflow_dispatch:
  push:
    paths:
      - "src/raylib.h"

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Update parse files
        working-directory: parser
        run: |
          make raylib_api
          mv raylib_api.* output

      - name: Diff parse files
        id: diff
        run: |
          git add -N parser
          git diff --name-only --exit-code
        continue-on-error: true

      - name: Commit parse files
        if: steps.diff.outcome == 'failure'
        run: |
          set -x
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git config user.name "github-actions[bot]"
          git add parser
          git commit -m "Update raylib_api.* by CI"
          git push