Skip to content

Merge pull request #10 from season-lab/debug-ce #51

Merge pull request #10 from season-lab/debug-ce

Merge pull request #10 from season-lab/debug-ce #51

name: Circle-CI-Bot
on:
push:
paths-ignore:
- 'docs/**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
with:
repository: 'ercoppa-bot/fuzzolic-builder-ci'
persist-credentials: false
fetch-depth: 0
- name: New revision
run: |
echo "${GITHUB_SHA}" > revision.dat
git add revision.dat
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "Update" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.API_TOKEN_GITHUB }}
branch: ${{ github.ref }}
repository: 'ercoppa-bot/fuzzolic-builder-ci'