This is an automated email from the ASF dual-hosted git repository.

jongyoul pushed a commit to branch feature/test-github-action
in repository https://gitbox.apache.org/repos/asf/zeppelin-site.git

commit eaa9085aeb480bac40347eee0e0a195e64673582
Author: Jongyoul Lee <jongy...@gmail.com>
AuthorDate: Sun Sep 1 18:15:33 2024 +0900

    [NO-ISSUE] Test push a new file on Github Actions
---
 .github/workflows/test.yml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 000000000..5dea0c176
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,22 @@
+name: test
+
+on: [push]
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    env:
+      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+    steps:
+    - uses: actions/checkout@v3
+    - name: Create file
+      run: echo "Hello World" > hello.txt
+    - name: Configure Git
+      run: |
+        git config --global user.name "Github Actions"
+        git config --global user.email "d...@zeppelin.apache.org"
+    - name: Commit files
+      run: |
+        git add hello.txt
+        git commit -m "Add hello.txt"
+        git push

Reply via email to