This is an automated email from the ASF dual-hosted git repository. glauesppen pushed a commit to branch feature/new-website in repository https://gitbox.apache.org/repos/asf/incubator-wayang-website.git
commit 303d4fa78ce78edbff1259b4fd475dce4b1c63fa Author: Glaucia Esppenchutz <[email protected]> AuthorDate: Sun Dec 3 19:10:53 2023 +0000 adding commit commands --- .github/workflows/main.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b2fe23d..2bae07a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -29,7 +29,7 @@ env: # TRAVIS_REPO_SLUG: on: push: - branches: [ main ] + branches: [ feature/new-website ] # pull_request: # branches: [ main ] jobs: @@ -129,10 +129,10 @@ jobs: cp ../tmp/.asf.yaml ./ # Commenting this step while we understand if still necessary - # - name: Commiting changes on Travis branch - # run: | - # git add -A - # git status - # git commit -m "Lastest site built on successful travis build ${{github.run_number}} auto-pushed to github" - # git remote set-url origin https://${{secrets.USER}}:${{secrets.TOKEN}}@github.com/$TRAVIS_REPO_SLUG}} - # git push origin $BRANCH_PAGE:$BRANCH_PAGE + - name: Commiting changes on Travis branch + run: | + git add -A + git config --global user.name 'GitHub Actions' + git config --global user.email '[email protected]' + git commit -m "Build website and document" + git push -f $BRANCH_PAGE
