From 6021fa721e45ff8cf61bdd5bf71bdfcb5e69e79e Mon Sep 17 00:00:00 2001 From: "SPRINX0\\prochazka" Date: Wed, 19 Feb 2025 16:44:13 +0100 Subject: [PATCH] diflow CI --- .github/workflows/diflow.yaml | 30 ++++++++++++++++++++++++++++++ workflow-templates/diflow.yaml | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 .github/workflows/diflow.yaml create mode 100644 workflow-templates/diflow.yaml diff --git a/.github/workflows/diflow.yaml b/.github/workflows/diflow.yaml new file mode 100644 index 000000000..ef21d66f0 --- /dev/null +++ b/.github/workflows/diflow.yaml @@ -0,0 +1,30 @@ +# -------------------------------------------------------------------------------------------- +# This file is generated. Do not edit manually +# -------------------------------------------------------------------------------------------- +name: Diflow merge +'on': + push: + branches: + - master +jobs: + merge: + runs-on: ubuntu-latest + steps: + - name: Use Node.js 22.x + uses: actions/setup-node@v1 + with: + node-version: 22.x + - name: Checkout dbgate/diflow + uses: actions/checkout@v2 + with: + repository: dbgate/diflow + path: diflow + - name: Diflow install + run: | + cd diflow + npm install + npm run build + - name: Diflow run (don't push) + run: | + cd diflow + node dist/diflow.js https://github.com/dbgate/dbgate-diflow-config.git --no-push diff --git a/workflow-templates/diflow.yaml b/workflow-templates/diflow.yaml new file mode 100644 index 000000000..e2a5b5f43 --- /dev/null +++ b/workflow-templates/diflow.yaml @@ -0,0 +1,33 @@ +name: Diflow merge + +on: + push: + branches: + - master + +jobs: + merge: + runs-on: ubuntu-latest + + steps: + - name: Use Node.js 22.x + uses: actions/setup-node@v1 + with: + node-version: 22.x + + - name: Checkout dbgate/diflow + uses: actions/checkout@v2 + with: + repository: dbgate/diflow + path: diflow + + - name: Diflow install + run: | + cd diflow + npm install + npm run build + + - name: Diflow run (don't push) + run: | + cd diflow + node dist/diflow.js https://github.com/dbgate/dbgate-diflow-config.git --no-push