From 21e204188571954d41653d315b06d0a931a35a9e Mon Sep 17 00:00:00 2001 From: Ivan Maidurov <43530141+IvanMaidurov@users.noreply.github.com> Date: Fri, 9 Feb 2024 13:46:40 +0100 Subject: [PATCH] ci: introduce semanticore (#42) * chore(deps): introduce semanticore * chore(deps): cleanup --- .github/workflows/semanticore.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/semanticore.yml diff --git a/.github/workflows/semanticore.yml b/.github/workflows/semanticore.yml new file mode 100644 index 0000000..12a480b --- /dev/null +++ b/.github/workflows/semanticore.yml @@ -0,0 +1,22 @@ +name: Semanticore + +on: + push: + branches: + - master +jobs: + semanticore: + runs-on: ubuntu-latest + name: Semanticore + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.*' + - name: Semanticore + run: go run github.com/aoepeople/semanticore@main + env: + SEMANTICORE_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file