Skip to content

Commit

Permalink
Merge pull request #273 from uyupun/feat/fix_ghactions_permissions
Browse files Browse the repository at this point in the history
DependabotからのPRはGitHub Actionsを実行しない
  • Loading branch information
tyokinuhata authored Jul 17, 2023
2 parents 4c97302 + a925dee commit 25d789d
Show file tree
Hide file tree
Showing 3 changed files with 5 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
2 changes: 2 additions & 0 deletions .github/workflows/notify-ghpages-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
runs-on:
- ubuntu-latest

if: ${{ !startsWith(github.head_ref, 'dependabot/') }}

steps:
- name: Generate directory name
id: dir_name
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 25d789d

Please sign in to comment.