Просмотр исходного кода

Merge pull request #843 from PrivateBin/php8-ci

Add CI for automatic PHP8 branch updates
El RIDO 4 лет назад
Родитель
Сommit
c5fd6028b5
1 измененных файлов с 28 добавлено и 0 удалено
  1. 28 0
      .github/workflows/refresh-php8.yml

+ 28 - 0
.github/workflows/refresh-php8.yml

@@ -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'
+