Skip to content

Commit

Permalink
Add CI to automatically sync upstream master
Browse files Browse the repository at this point in the history
  • Loading branch information
declantsien committed Mar 8, 2023
1 parent 7e6b4cf commit 123a1c3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pull-upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Pull upstream
on:
schedule:
- cron: '0 0 * * SAT'
workflow_dispatch:
inputs:
empyt:
description: Not used
required: false
jobs:
release_pull_request:
runs-on: ubuntu-latest
name: release_pull_request
steps:
- name: checkout
uses: actions/checkout@v1
- name: Create PR to branch
uses: gorillio/github-action-sync@master
with:
upstream: https://github.com/emacs-mirror/emacs.git
upstream_branch: master
branch: master
pr_labels: pull-upstream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITBOT_EMAIL: declantsien@riseup.net
DRY_RUN: false

0 comments on commit 123a1c3

Please sign in to comment.