Skip to content

chore(deps): fix renovate and manual trigger #820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ playground
build
composer.json
tsconfig.json
vendor
vendor
renovate.json
5 changes: 5 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Renovate
on:
schedule:
- cron: '0 14 * * 5' # At 14:00 on Friday.
workflow_dispatch:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you also add it for the release trigger? so we can recommend it instead of running the CLI

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, does it work without providing inputs?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah oki just saw 820d3e1

Copy link
Collaborator Author

@millotp millotp Jul 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On the doc it does but I think it's just a linter issue, no big deal

inputs:
fake_input:
description: input needed to satisfy the yaml linter
required: false

jobs:
renovate:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/scheduled-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Scheduled Release
on:
schedule:
- cron: '30 6 * * 2'
workflow_dispatch:
inputs:
fake_input:
description: input needed to satisfy the yaml linter
required: false

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
".github/actions/setup/action.yml"
],
"matchStrings": [
"https:\\/\\/github\\.com\\/google\\/google-java-format\\/releases\\/download\\/v(?<currentValue>.*?)\\/google-java-format-(?<currentValue>.*?)-all-deps\\.jar"
"google-java-format\/releases\/download\/v(?<currentValue>.*?)\/google-java-format-(?<currentValue>.*?)-all-deps"
],
"depNameTemplate": "google/google-java-format",
"datasourceTemplate": "github-releases"
Expand All @@ -74,7 +74,7 @@
"description": "Update yarn version (won't work because we need to download the script but gives an alert at least)",
"fileMatch": ".yarnrc.yml",
"matchStrings": [
"yarnPath: \\.yarn\\/releases\\/yarn-(?<currentValue>.*?)\\.cjs"
"yarn\/releases\/yarn-(?<currentValue>.*?)"
],
"depNameTemplate": "yarnpkg/berry",
"datasourceTemplate": "github-releases"
Expand Down