Skip to content

Commit

Permalink
Add nightly job to attempt rebase on Bitcoin core master
Browse files Browse the repository at this point in the history
  • Loading branch information
psztorc authored Sep 18, 2024
1 parent 6fc4692 commit ba5e9d4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/monitor-upstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Monitor Bitcoin Core Upstream Branch

on:
schedule:
- cron: '0 0 * * *' # Runs daily at 00:00
workflow_dispatch:

jobs:
check-bitcoin-core:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Attempt rebase on Bitcoin Core master
run: |
git remote add bitcoin-core https://github.com/bitcoin/bitcoin.git
git fetch bitcoin-core master
git rebase bitcoin-core/master

0 comments on commit ba5e9d4

Please sign in to comment.