diff options
Diffstat (limited to '.github/workflows/update.yml')
-rw-r--r-- | .github/workflows/update.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 34c6dfa..1ebf8da 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -1,4 +1,4 @@ -name: Update the repository with the latest base16 colorschemes +name: Update with the latest base16 colorschemes on: workflow_dispatch: schedule: @@ -18,12 +18,13 @@ jobs: run: pip install pybase16-builder - name: Fetch the repository code uses: actions/checkout@v3 + with: + token: ${{ secrets.BOT_ACCESS_TOKEN }} - name: Run make run: make - name: Commit the changes, if any uses: stefanzweifel/git-auto-commit-action@v4 with: - token: ${{ secrets.BOT_ACCESS_TOKEN }} commit_message: Update with the latest base16-project colorschemes branch: ${{ github.head_ref }} commit_user_name: base16-project-bot |