Skip to content

PHP Workflow

PHP Workflow #2

Workflow file for this run

name: PHP Workflow
# on:
# schedule:
# - cron: '0 0 * * *' # 每天 UTC 时间 00:00 运行
on:
# 手动触发事件
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test scenario tags'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.2'
- name: Run PHP script
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} # github token
GPT_URL: ${{ secrets.GPT_URL }} # chatgpt url
GPT_KEY: ${{ secrets.GPT_KEY }} # chatgpt key
run: php index.php