From: Charlie Fish Date: Wed, 9 Jun 2021 21:32:20 +0000 (-0600) Subject: Adding generate-noip GitHub Action Workflow X-Git-Tag: aggregated-20250518~579^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e73dbfc2e3d5e48e2ac06d84abf82cc362e4e274;p=thirdparty%2Fblocklistproject%2Flists.git Adding generate-noip GitHub Action Workflow --- diff --git a/.github/workflows/generate-noip.yml b/.github/workflows/generate-noip.yml new file mode 100644 index 0000000..2628120 --- /dev/null +++ b/.github/workflows/generate-noip.yml @@ -0,0 +1,21 @@ +name: CI +on: + push: + +jobs: + generate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: 15.x + - run: node scripts/generate-noip.js + - name: Commit & Push + uses: actions-x/commit@v2 + with: + email: noreply@blocklist.site + name: GitHub Actions + branch: master +