-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 958 Bytes
/
generate.yaml
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
38
39
40
name: Generate PostgreSQL Error Codes
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
- name: Checkout
uses: actions/checkout@v4
- name: Generate PostgreSQL Error Codes
uses: nick-fields/retry@v3
with:
timeout_seconds: 60
max_attempts: 3
command: make
- name: Syntax check
run: php -l -n -d error_reporting=E_ALL ./src/PostgresError.php
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update Error Code
delete-branch: true
title: Update Error Code
body: |
Error codes have been updated.
- https://github.com/postgres/postgres/blob/master/src/backend/utils/errcodes.txt