Check upstream #236
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check upstream | |
on: | |
schedule: | |
- cron: 0 0 * * 1 | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch upstream | |
run: | | |
git remote add upstream git://git.suckless.org/dwm | |
git fetch --all | |
- name: Check upstream | |
run: git branch -a --merged | grep remotes/upstream/master > /dev/null 2>&1 |