Skip to content

Commit

Permalink
🐛 fix: DependabotからのPRはGitHub Actionsを実行しない
Browse files Browse the repository at this point in the history
  • Loading branch information
tyokinuhata committed Jul 14, 2023
1 parent 4c97302 commit 41f5973
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cleanup-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
runs-on:
- ubuntu-latest

if: ${{ !startsWith(github.ref, "refs/heads/dependabot/") }}

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/notify-ghpages-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
pull_request:
types:
- opened
branches-ignore:
- dependabot/**
- gh-pages

jobs:
notify-ghpages-url:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Publish GitHub Pages
on:
push:
branches-ignore:
- dependabot/**
- gh-pages

jobs:
Expand Down

0 comments on commit 41f5973

Please sign in to comment.