Skip to content

Commit

Permalink
Tweaks of Dependabot version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic committed Jan 27, 2022
1 parent 4b33fe1 commit f69ee3c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ updates:
directory: "/"
schedule:
interval: "daily"
time: "09:00"
timezone: "Europe/Belgrade"
ignore:
- dependency-name: "*quasar*"
update-types: ["version-update:semver-major"]
- dependency-name: "cypress"
update-types: ["version-update:semver-major"]
10 changes: 10 additions & 0 deletions generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,13 @@ sed -i '' -e '/ENVIRONMENT/ s/$/ production/' .env.production

# Reporting successful creation of environment files
printf "${green}Environment files successfully created${regular} \n"

# Asking if user wishes to disable Dependabot version updates
read -p "Do you wish to disable Dependabot version updates? [y/n]: " dependabot
dependabot=${dependabot:-n}

if [ $dependabot = "y" ] || [ $dependabot = "Y" ]; then
rm -rf .github
# Reporting successful disabling of Dependabot version updates
printf "${green}Dependabot version updates successfully disabled${regular} \n"
fi
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starter",
"version": "0.0.5",
"version": "0.0.6",
"description": "ExampleDescription.",
"productName": "ExampleName",
"author": "Milos Paunovic <paun992@hotmail.com>",
Expand Down

0 comments on commit f69ee3c

Please sign in to comment.