From 28d359e02f4c4449523fa3465317331dbec970a8 Mon Sep 17 00:00:00 2001 From: Viet Huynh Date: Sat, 9 Sep 2023 02:37:00 +0700 Subject: [PATCH] use original repo by default --- auto_update_github_action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/auto_update_github_action.yml b/auto_update_github_action.yml index 7685df1..b2c0eda 100644 --- a/auto_update_github_action.yml +++ b/auto_update_github_action.yml @@ -14,11 +14,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + repository: "mrrfv/cloudflare-gateway-pihole-scripts" + ref: "v1" - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: lts/* + node-version: "lts/*" - name: Install npm dependencies run: npm ci