From 77a1d8f6e3ba9e1333966d431e59b19c1ebffbbc Mon Sep 17 00:00:00 2001 From: Seeker Date: Mon, 17 Aug 2020 09:27:39 -0700 Subject: [PATCH] workflows: add update-develop (#1139) --- .github/workflows/update-develop.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/update-develop.yml diff --git a/.github/workflows/update-develop.yml b/.github/workflows/update-develop.yml new file mode 100644 index 000000000..1b4232f1f --- /dev/null +++ b/.github/workflows/update-develop.yml @@ -0,0 +1,15 @@ +name: Update develop + +on: + push: + branches: [master] + +jobs: + update-develop: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@main + with: + fetch-depth: 100 + - name: Update the develop branch + run: git push origin origin/master:develop