From 006ddf4414db74a3f01887c42bf7a776eaa7e344 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 15 Mar 2022 12:58:37 +0100 Subject: [PATCH] Create sort_json.yaml --- .github/workflows/sort_json.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sort_json.yaml diff --git a/.github/workflows/sort_json.yaml b/.github/workflows/sort_json.yaml new file mode 100644 index 000000000..a65390307 --- /dev/null +++ b/.github/workflows/sort_json.yaml @@ -0,0 +1,19 @@ +# yamllint disable rule:line-length +--- +name: Sort Json + +on: + schedule: + - cron: "0 0 * * 0" + workflow_dispatch: + +jobs: + sort_json: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Run script file + run: | + chmod +x .templates/sortjson.sh + .templates/sortjson.sh + shell: bash