From 8d16fb2ae97f9f4959e23060668d8c5693497bbb Mon Sep 17 00:00:00 2001 From: DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> Date: Fri, 20 Aug 2021 00:07:35 +0200 Subject: workflow --- .github/workflows/main.yml | 2 -- 1 file changed, 2 deletions(-) (limited to '.github/workflows/main.yml') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 916448e7..b4475dda 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,8 +7,6 @@ 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: -- cgit From f3555a8f11fb3bf0109c249e917d40786e8116d9 Mon Sep 17 00:00:00 2001 From: DeDiamondPro <67508414+DeDiamondPro@users.noreply.github.com> Date: Mon, 30 Aug 2021 20:34:12 +0200 Subject: completely replace --- .github/workflows/main.yml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/main.yml (limited to '.github/workflows/main.yml') 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." -- cgit