diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-11 15:12:54 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-11 15:12:54 -0400 |
commit | 698601d4b7bb1befc8a5cbab22617fa4a7f96771 (patch) | |
tree | 00b8b0da43391f1bfec97763c34f1352bb7be635 | |
parent | 2edd452bdaa1cc2d4a7f8821e6096c17954f4727 (diff) | |
parent | c810e37d02d2318127f4d8fa5e0dec1e71ede66e (diff) | |
download | NotEnoughUpdates-REPO-698601d4b7bb1befc8a5cbab22617fa4a7f96771.tar.gz NotEnoughUpdates-REPO-698601d4b7bb1befc8a5cbab22617fa4a7f96771.tar.bz2 NotEnoughUpdates-REPO-698601d4b7bb1befc8a5cbab22617fa4a7f96771.zip |
Merge branch 'master' of https://github.com/DeDiamondPro/NotEnoughUpdates-REPO into DeDiamondPro-master
-rw-r--r-- | .github/workflows/NotEnoughUpdates-REPO-Workflow.yml | 20 | ||||
-rw-r--r-- | .github/workflows/main.yml | 44 |
2 files changed, 20 insertions, 44 deletions
diff --git a/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml b/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml new file mode 100644 index 00000000..58bd2df6 --- /dev/null +++ b/.github/workflows/NotEnoughUpdates-REPO-Workflow.yml @@ -0,0 +1,20 @@ +name: NotEnoughUpdates REPO Workflow + +# Controls when the action will run. +on: + pull_request: + branches: [ master, alpha ] + push: + branches: [ master, alpha ] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: run-checks + uses: NotEnoughUpdates/NotEnoughUpdates-REPO-Workflow@main + with: + repo-token: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 4abf1753..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,44 +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] - pull_request: - 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." |