Skip to content

Commit

Permalink
update: Dependabot、Github Actions用設定を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus07424 committed Dec 18, 2023
1 parent a7827e0 commit 4165c95
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,10 @@ updates:
time: "00:00"
timezone: Asia/Tokyo
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
time: "00:00"
timezone: Asia/Tokyo
open-pull-requests-limit: 10
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
Expand All @@ -27,7 +27,7 @@ jobs:
run: mvn -B package --file pom.xml
- name: Add label
uses: actions/github-script@v6
if: ${{ github.event_name == 'pull_request' }}
if: ${{ github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' }}
with:
script: |
github.rest.issues.addLabels({
Expand Down

0 comments on commit 4165c95

Please sign in to comment.