Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/peaceiris/hugo-theme-iris.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShohei Ueda <30958501+peaceiris@users.noreply.github.com>2022-04-29 10:29:14 +0300
committerGitHub <noreply@github.com>2022-04-29 10:29:14 +0300
commit1b29741be19d080380a58c80a3ab38165166448a (patch)
tree47d21daf9e72231558554f37f8fe171caea75dd6
parent2d4e48b7d9ef25b4a8979bafb496b5c4f1f999f5 (diff)
ci: fix filter
-rw-r--r--.github/workflows/dependabot-approve.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/dependabot-approve.yml b/.github/workflows/dependabot-approve.yml
index 075cd0f5..681b366b 100644
--- a/.github/workflows/dependabot-approve.yml
+++ b/.github/workflows/dependabot-approve.yml
@@ -22,7 +22,8 @@ jobs:
- name: Approve
if: |
(steps.meta.outputs.package-ecosystem == 'github_actions') ||
- (steps.meta.outputs.package-ecosystem == 'npm_and_yarn' && steps.meta.outputs.directory == '/') ||
+ (steps.meta.outputs.package-ecosystem == 'go_modules' && steps.meta.outputs.directory == '/deps') ||
+ (steps.meta.outputs.package-ecosystem == 'npm_and_yarn' && steps.meta.outputs.directory == '/' ||
(steps.meta.outputs.package-ecosystem == 'npm_and_yarn' && steps.meta.outputs.directory == '/exampleSite' && steps.meta.outputs.update-type == 'version-update:semver-minor') ||
(steps.meta.outputs.package-ecosystem == 'npm_and_yarn' && steps.meta.outputs.directory == '/exampleSite' && steps.meta.outputs.update-type == 'version-update:semver-patch')
env: