diff options
| author | 2020-06-10 01:52:44 +0000 | |
|---|---|---|
| committer | 2020-06-10 01:52:44 +0000 | |
| commit | 371575386893996e2cbb62efd535187340d9fa33 (patch) | |
| tree | 2831f9c4471ef9b5d590d1af7468f0a3902e9236 /.github | |
| parent | d3eec6ed9c83725b6044b001d587cd42507c5496 (diff) | |
github: Borrow from base16-fzf
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/update.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..aed0bdc --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,25 @@ +name: Update the repository with the latest base16 colorschemes +on: + schedule: + - cron: "0 0 * * 0" # https://crontab.guru/every-week +jobs: + run: + runs-on: ubuntu-latest + steps: + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Upgrade pip + run: python -m pip install --upgrade pip + - name: Install pybase16 + run: pip install pybase16-builder + - name: Fetch the repository code + uses: actions/checkout@v2 + - name: Run make + run: make + - name: Commit the changes, if any + uses: stefanzweifel/git-auto-commit-action@v4.1.1 + with: + commit_message: Update repository with the latest base16 colorschemes + branch: ${{ github.head_ref }} |
