From a4a6d28bbcbed4b66086a85b469ff90d39ef32e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Mon, 1 Feb 2021 03:22:40 +0100 Subject: [PATCH] :art: Trigger gwion-fmt build --- .github/workflows/fmt.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/fmt.yml diff --git a/.github/workflows/fmt.yml b/.github/workflows/fmt.yml new file mode 100644 index 00000000..3b13e33d --- /dev/null +++ b/.github/workflows/fmt.yml @@ -0,0 +1,25 @@ +name: 'trigger Formatter' +on: + workflow_run: + workflows: ["Linux Release"] + types: + - completed + +jobs: + post-test-success: + runs-on: ubuntu-latest + steps: + + - uses: actions/checkout@v2 + + - name: call the other repo + if: github.ref == 'refs/heads/master' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + EVENT: benchmark-event + ORG: Gwion + REPO: gwion-fmt + run: | + [ ! -z "$(git log -n1 --oneline --grep='skip ci')" ] && exit 0 + echo "{\"event_type\": \"${EVENT}\", \"client_payload\": {\"commit_info\":\"$(git log -n1 --date=format:'%D %H:%M:%S' --format='> Author: %an Date: %cd Commit: %h')\"}}" > commit_info + curl -d "@commit_info" -H "Content-Type: application/json" -H "Authorization: token ${{ secrets.BENCHMARK_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" "https://api.github.com/repos/${ORG}/${REPO}/dispatches" -- 2.43.0