From bcc5b6435408577c33f87399487991ac625eedc5 Mon Sep 17 00:00:00 2001 From: Danil Akhtarov Date: Sat, 14 Dec 2024 13:52:14 +0400 Subject: [PATCH] ci: add nightly workflow --- .github/workflows/nightly.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 00000000..feb0b87e --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,24 @@ +name: nightly + +on: + push: + paths: + - "languages/**" + - "templates/**" + - "sportorg/**" + - "poetry.lock" + branches: [ master ] + workflow_dispatch: + +jobs: + lint: + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + repository-projects: write + steps: + - name: Tag branch + run: | + git tag -f -a nightly -m "" + git push -f origin nightly