diff options
author | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2021-08-30 20:34:12 +0200 |
---|---|---|
committer | DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> | 2021-08-30 20:34:12 +0200 |
commit | f3555a8f11fb3bf0109c249e917d40786e8116d9 (patch) | |
tree | a4e02246de57f9debdcc9b575624ecbed9cc35d5 | |
parent | d28f770adf878da2f94798e22d5470dad7a35403 (diff) | |
download | NotEnoughUpdates-REPO-f3555a8f11fb3bf0109c249e917d40786e8116d9.tar.gz NotEnoughUpdates-REPO-f3555a8f11fb3bf0109c249e917d40786e8116d9.tar.bz2 NotEnoughUpdates-REPO-f3555a8f11fb3bf0109c249e917d40786e8116d9.zip |
completely replace
-rw-r--r-- | .github/workflows/NotEnoughUpdates-REPO-Workflow.yml | 2 | ||||
-rw-r--r-- | .github/workflows/main.yml | 42 |
2 files changed, 2 insertions, 42 deletions
diff --git a/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml b/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml index acbe63c4..92941c9e 100644 --- a/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml +++ b/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml @@ -4,6 +4,8 @@ name: NotEnoughUpdates REPO Workflow on: pull_request: branches: [ master, alpha ] + push: + branches: [ master, alpha ] workflow_dispatch: jobs: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b4475dda..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,42 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: JSON - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master, alpha ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - Validatejson: - name: Validate json - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@v2 - - name: lint constants - run: | - #!/bin/bash - echo "Linting contants..." - for filename in constants/*.json; do - if ! python -mjson.tool "$filename" &> /dev/null ; then - echo "Linting $filename failed:" - python -mjson.tool "$filename" > /dev/null - fi - done - echo "Linted." - - name: lint items - run: | - #!/bin/bash - echo "Linting contants..." - for filename in items/*.json; do - if ! python -mjson.tool "$filename" &> /dev/null ; then - echo "Linting $filename failed:" - python -mjson.tool "$filename" > /dev/null - fi - done - echo "Linted." |