From 947625402d87bf5cfa45d3e42d8b28d67c391760 Mon Sep 17 00:00:00 2001 From: Stephan Date: Fri, 3 Dec 2021 11:10:44 +0100 Subject: [PATCH] test-push --- .github/workflows/test-push.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test-push.yml diff --git a/.github/workflows/test-push.yml b/.github/workflows/test-push.yml new file mode 100644 index 0000000..1169137 --- /dev/null +++ b/.github/workflows/test-push.yml @@ -0,0 +1,25 @@ +name: Test Push +on: push +jobs: + foo: + name: Foo + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + ref: ${{github.ref}} + + - name: Foo + shell: bash + run: | + echo "foo" >> foo.txt + + - name: Push + shell: bash + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "github-actions@hazelcast.com" + git add foo.txt + git commit -m "Foo" + git push \ No newline at end of file