Skip to content

Commit

Permalink
Merge pull request #843 from PrivateBin/php8-ci
Browse files Browse the repository at this point in the history
Add CI for automatic PHP8 branch updates
  • Loading branch information
elrido committed Oct 7, 2021
2 parents 9813048 + c7cd450 commit c5fd602
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/refresh-php8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Refresh PHP 8 branch

on:
push:
branches: [ master ]
schedule:
- cron: '42 2 * * *'
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Checkout php8 branch
run: git checkout php8

- name: Merge master changes into php8
run: git merge master

- name: Push new changes
uses: github-actions-x/commit@v2.8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'php8'

0 comments on commit c5fd602

Please sign in to comment.