From 41a97f93a0d949b061ac7fca4f1585f36f6d7d26 Mon Sep 17 00:00:00 2001 From: Furkan Yavuz Date: Sat, 25 Sep 2021 04:29:26 +0300 Subject: [PATCH 1/3] trigger dependabot --- .github/dependabot.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9760243..03e5297 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,4 +16,3 @@ updates: labels: - "workflow" milestone: 1 - From 5a89271fc7db912054b759a0480c0107b047f8e9 Mon Sep 17 00:00:00 2001 From: Furkan Yavuz Date: Sat, 25 Sep 2021 04:34:51 +0300 Subject: [PATCH 2/3] update workflows --- .github/dependabot.yml | 3 --- .github/workflows/on-push-to-master.yml | 25 ------------------------- .github/workflows/pr-open-workflows.yml | 18 ++++++++++++++++++ 3 files changed, 18 insertions(+), 28 deletions(-) delete mode 100644 .github/workflows/on-push-to-master.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 03e5297..6c05314 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,3 @@ -# dependabot.yml file with -# customized npm configuration - version: 2 updates: # Keep npm dependencies up to date diff --git a/.github/workflows/on-push-to-master.yml b/.github/workflows/on-push-to-master.yml deleted file mode 100644 index 65f1097..0000000 --- a/.github/workflows/on-push-to-master.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: On Push to Master Workflows - -on: - push: - branches: - - "master" - -jobs: - continuous-integration: - name: "Npm Continuous Integration" - runs-on: ubuntu-latest - - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - - - name: Install Node - uses: actions/setup-node@v1 - with: - node-version: 12 - - - name: NPM Install - run: npm install - - name: NPM Continous Integration - run: npm ci diff --git a/.github/workflows/pr-open-workflows.yml b/.github/workflows/pr-open-workflows.yml index 26f7082..fb92c50 100644 --- a/.github/workflows/pr-open-workflows.yml +++ b/.github/workflows/pr-open-workflows.yml @@ -36,3 +36,21 @@ jobs: uses: Code-Hex/auto-milestone-binder@v1.0.1 with: github-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }} + + continuous-integration: + name: "Npm Continuous Integration" + runs-on: ubuntu-latest + + steps: + - name: Checkout Repo + uses: actions/checkout@v2 + + - name: Install Node + uses: actions/setup-node@v1 + with: + node-version: 12 + + - name: NPM Install + run: npm install + - name: NPM Continous Integration + run: npm ci From 02d9ce880a0042b2b65f07e586dfc5450e6511bf Mon Sep 17 00:00:00 2001 From: Furkan Yavuz Date: Sat, 25 Sep 2021 04:39:24 +0300 Subject: [PATCH 3/3] update workflow --- ...to-demos.yml => pr-open-to-demos-and-dependency-update.yml} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{pr-open-to-demos.yml => pr-open-to-demos-and-dependency-update.yml} (85%) diff --git a/.github/workflows/pr-open-to-demos.yml b/.github/workflows/pr-open-to-demos-and-dependency-update.yml similarity index 85% rename from .github/workflows/pr-open-to-demos.yml rename to .github/workflows/pr-open-to-demos-and-dependency-update.yml index 7fee8bd..9688242 100644 --- a/.github/workflows/pr-open-to-demos.yml +++ b/.github/workflows/pr-open-to-demos-and-dependency-update.yml @@ -1,10 +1,11 @@ -name: PR Open To Demos Workflows +name: PR Open To Demos and Dependency Update Workflows on: pull_request: types: [ opened ] branches: - demo/* + - workflow/dependency-update jobs: reset-demo-from-develop: