From 936ec9a536c7165ec16d6b6f99e3826388d8e900 Mon Sep 17 00:00:00 2001 From: Adam Sobotka Date: Sat, 2 Mar 2024 13:32:56 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..a589acf --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + sparse-checkout: | + jobs.csv + sparse-checkout-cone-mode: false + - run: | + cat $HOME/jobs.csv + git config user.name github-actions + git config user.email github-actions@github.com + git add . + git commit -m "generated" + git push