You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/.github/workflows/main.yml

16 lines
401 B

name: cartodb check NEWS.md
on:
push:
branches-ignore:
- master
jobs:
cartodb-news:
runs-on: ubuntu-18.04
steps:
- name: Checkout current repository
uses: actions/checkout@v1
- name: Check NEWS.md was updated
run: if git diff $(git merge-base $(git rev-parse HEAD) origin/master) --name-only | grep NEWS.md > /dev/null; then exit 0; else exit 1; fi