Deploy to GitHub Pages Auto Bot

I have been using this GitHub action to deploy the changes to my GitHub pages:

 deploy:
    runs-on: ubuntu-20.04
    needs: linkChecker
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: true  # Fetch Hugo themes (true OR recursive) tt + another test
          fetch-depth: 0    # Fetch all history for .GitInfo and .Lastmod

      - name: Setup Hugo
        uses: peaceiris/actions-hugo@v2
        with:
          hugo-version: 'latest'
          extended: true

      - name: Build
        run: hugo --minify

      - name: Deploy
        uses: peaceiris/actions-gh-pages@v3
        if: github.ref == 'refs/heads/master'
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./public
          keep_files: true

It was fins until 3 days ago where I keep seeing after every single run an additional pipeline step as seen from the image below:

It can be seen that it is a Bot that is getting run after every single time. I would like to avoid this. Any ideas what is happening? I did not configure thic Bot in my GitHub account.

The “additional pipeline” appears to be the current latest commit in your project’s repo.

You will have a better chance of getting a more informed reply to your question, by asking directly at the Issues Tracker of the actions-gh-pages repository.

This topic was automatically closed after 2 days. New replies are no longer allowed.