From 768067fa0639768d993ea99667f1c7e384e991b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ronald=20J=C3=A4pel?= Date: Mon, 23 Oct 2023 12:10:43 +0200 Subject: [PATCH] Create push_ci.yml --- .github/workflows/push_ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/push_ci.yml diff --git a/.github/workflows/push_ci.yml b/.github/workflows/push_ci.yml new file mode 100644 index 0000000..ce9f736 --- /dev/null +++ b/.github/workflows/push_ci.yml @@ -0,0 +1,13 @@ +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: | + date > generated.txt + git config user.name github-actions + git config user.email github-actions@github.com + git add . + git commit -m "generated" + git push