From 9a51c90edd1dd4c37646832c310189ee3469bbcb Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Thu, 13 Feb 2025 14:28:03 +0300 Subject: [PATCH] Initial commit --- .github/workflows/collect_commits.yml | 16 ++++++++++++++++ README.md | 1 + 2 files changed, 17 insertions(+) create mode 100644 .github/workflows/collect_commits.yml create mode 100644 README.md diff --git a/.github/workflows/collect_commits.yml b/.github/workflows/collect_commits.yml new file mode 100644 index 0000000..4082c7b --- /dev/null +++ b/.github/workflows/collect_commits.yml @@ -0,0 +1,16 @@ +name: Collect Commits +on: + push: + +jobs: + collect-commits: + runs-on: [self-hosted, mse] + steps: + - name: Collect info + run: | + cd /data/ + mkdir -p '${{github.repository}}' + + echo '${{ toJson(github) }}' > "./run.json" + + python3 get_info.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..19ea887 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# mse-2025-template \ No newline at end of file