Skip to content

Commit ea89e56

Browse files
authored
Merge pull request #88 from open-template-hub/develop
Release/update workflows
2 parents 1a3cfb0 + 815881e commit ea89e56

13 files changed

+30
-35
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/cron-dependency-checker-workflow.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Node
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: 12
20+
node-version: 16
2121

2222
- name: NPM Install
2323
run: npm i
@@ -26,9 +26,18 @@ jobs:
2626
- name: Build
2727
run: npm run build
2828

29+
- name: Check for Changes
30+
run: |
31+
if git diff --exit-code; then
32+
echo "changes_exist=false" >> $GITHUB_ENV
33+
else
34+
echo "changes_exist=true" >> $GITHUB_ENV
35+
fi
36+
2937
- name: Git Commit and Push
38+
if: ${{ env.changes_exist == 'true' }}
3039
run: |
31-
git config --global user.email "furknyavuz@gmail.com"
32-
git config --global user.name "Furkan Yavuz"
40+
git config --global user.email "98660390+oth-service-user@users.noreply.github.com"
41+
git config --global user.name "OTH Service User"
3342
git commit -am "Workflow/dependency check"
3443
git push

.github/workflows/issue-assigned-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- name: Move Issue to In-Progress
1414
uses: alex-page/github-project-automation-plus@v0.3.0
1515
with:
16-
project: Open Template Hub Servers
16+
project: Open Template Hub Generators
1717
column: In progress
1818
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}

.github/workflows/issue-open-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Move Issue to In-Progress
1414
uses: alex-page/github-project-automation-plus@v0.3.0
1515
with:
16-
project: Open Template Hub Servers
16+
project: Open Template Hub Generators
1717
column: To do
1818
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
1919

.github/workflows/on-push-tags.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Node
3030
uses: actions/setup-node@v1
3131
with:
32-
node-version: 12
32+
node-version: 16
3333
registry-url: https://registry.npmjs.org/
3434

3535
- name: NPM Install
@@ -57,7 +57,7 @@ jobs:
5757
- name: Install Node
5858
uses: actions/setup-node@v1
5959
with:
60-
node-version: 12
60+
node-version: 16
6161
registry-url: https://npm.pkg.github.com
6262
scope: '@open-template-hub'
6363

.github/workflows/on-version-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Node
2222
uses: actions/setup-node@v1
2323
with:
24-
node-version: 12
24+
node-version: 16
2525

2626
- name: Bump Version and Create Tag
2727
uses: phips28/gh-action-bump-version@master

.github/workflows/pr-open-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Move PR to In-Progress
2525
uses: alex-page/github-project-automation-plus@v0.3.0
2626
with:
27-
project: Open Template Hub Servers
27+
project: Open Template Hub Generators
2828
column: In progress
2929
repo-token: ${{ secrets.MASTER_BRANCH_ACCESS_TOKEN }}
3030

.run/build.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration default="false" name="build" type="js.build_tools.npm" nameIsGenerated="true">
33
<package-json value="$PROJECT_DIR$/package.json" />
44
<command value="build" />
5-
<node-interpreter value="node" />
5+
<node-interpreter value="/usr/local/bin/node" />
66
<package-manager value="npm" />
77
<envs />
88
<method v="2" />

.run/install.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration default="false" name="install" type="js.build_tools.npm" nameIsGenerated="true">
33
<package-json value="$PROJECT_DIR$/package.json" />
44
<command value="install" />
5-
<node-interpreter value="node" />
5+
<node-interpreter value="/usr/local/bin/node" />
66
<package-manager value="npm" />
77
<envs />
88
<method v="2" />

.run/outdated.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<scripts>
66
<script value="outdated" />
77
</scripts>
8-
<node-interpreter value="project" />
8+
<node-interpreter value="/usr/local/bin/node" />
99
<package-manager value="npm" />
1010
<envs />
1111
<method v="2" />

0 commit comments

Comments
 (0)