From 5b8905ed020cebe0cf696c4b29cbb35a78a30037 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 25 Jun 2022 03:11:35 +0200 Subject: [PATCH] add Pull Hub Items github action --- .github/workflows/pull-hub.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pull-hub.yml diff --git a/.github/workflows/pull-hub.yml b/.github/workflows/pull-hub.yml new file mode 100644 index 0000000000..5d1d97a886 --- /dev/null +++ b/.github/workflows/pull-hub.yml @@ -0,0 +1,18 @@ +name: Pull Hub Items +on: + schedule: + # * is a special character in YAML so you have to quote this string + - cron: "0 0 */1 * *" + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + change_version: + runs-on: ubuntu-latest + container: node:18 + steps: + - uses: actions/checkout@v3 + - name: Pull hub + run: ./.github/pull_hub_items.sh + - name: Create Pull Request + uses: peter-evans/create-pull-request@v4