2021-10-06 18:13:09 +00:00
|
|
|
name: Refresh PHP 8 branch
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-10-06 18:19:03 +00:00
|
|
|
branches: [ master ]
|
2021-10-06 18:13:09 +00:00
|
|
|
schedule:
|
|
|
|
- cron: '42 2 * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout php8 branch
|
2021-10-11 15:45:42 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
# directly checkout the php8 branch
|
|
|
|
ref: php8
|
|
|
|
# Number of commits to fetch. 0 indicates all history for all branches and tags.
|
|
|
|
# Default: 1
|
|
|
|
fetch-depth: 0
|
2021-10-06 18:13:09 +00:00
|
|
|
|
|
|
|
- name: Merge master changes into php8
|
2021-10-13 18:07:45 +00:00
|
|
|
run: git merge origin/master
|
2021-10-06 18:13:09 +00:00
|
|
|
|
|
|
|
- name: Push new changes
|
|
|
|
uses: github-actions-x/commit@v2.8
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
push-branch: 'php8'
|
|
|
|
|