diff --git a/.github/workflows/cleanup-ghpages.yml b/.github/workflows/cleanup-ghpages.yml index 8e033e46..12e1896e 100644 --- a/.github/workflows/cleanup-ghpages.yml +++ b/.github/workflows/cleanup-ghpages.yml @@ -8,6 +8,8 @@ jobs: runs-on: - ubuntu-latest + if: ${{ !startsWith(github.ref, 'refs/heads/dependabot/') }} + steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/.github/workflows/notify-ghpages-url.yml b/.github/workflows/notify-ghpages-url.yml index 1aa5df71..ea5a90e3 100644 --- a/.github/workflows/notify-ghpages-url.yml +++ b/.github/workflows/notify-ghpages-url.yml @@ -10,6 +10,8 @@ jobs: runs-on: - ubuntu-latest + if: ${{ !startsWith(github.head_ref, 'dependabot/') }} + steps: - name: Generate directory name id: dir_name diff --git a/.github/workflows/publish-ghpages.yml b/.github/workflows/publish-ghpages.yml index 7acf00ad..dd683a3d 100644 --- a/.github/workflows/publish-ghpages.yml +++ b/.github/workflows/publish-ghpages.yml @@ -3,6 +3,7 @@ name: Publish GitHub Pages on: push: branches-ignore: + - dependabot/** - gh-pages jobs: