-
Notifications
You must be signed in to change notification settings - Fork 5.3k
create issue via github action for stale deps #16705 #17876
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
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
f2c04ed
deps action yaml to create issue
ME-ON1 b78b1ab
added missed steps
ME-ON1 a3df623
change assignees to assignees
ME-ON1 7ae7940
rm assignee param
ME-ON1 651d058
rm labels
ME-ON1 3db3d7c
added labels
ME-ON1 77ae491
fix fmt
ME-ON1 b096da8
fix fmt #2
ME-ON1 1b9f6b0
pre commit resolve
ME-ON1 cbe0b4e
pre commit resolve
ME-ON1 9618cd3
resolved pre push errors
ME-ON1 8c64604
resolved asked changes
ME-ON1 3378be4
fmt check
ME-ON1 75ad01a
cron flag
ME-ON1 3ab7494
argv[2] to argv[1], split correction and len check
ME-ON1 cef8790
argparse lib to parse args
ME-ON1 d5822a2
fmt check fix
ME-ON1 8faa2bd
fmt check fix
ME-ON1 e16c41f
optional flag for cron
ME-ON1 b481525
fmt check
ME-ON1 9f3fe95
corrected repo
ME-ON1 80c7983
removed legacy search and done asked reviews
ME-ON1 69cedb0
format check
ME-ON1 81dde30
create_issues flag
ME-ON1 8fad299
small things
ME-ON1 7f49065
small changes:
ME-ON1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Check for latest_release of deps | ||
|
|
||
| on : | ||
| schedule : | ||
| - cron : '0 8 * * *' | ||
|
|
||
| workflow_dispatch : | ||
|
|
||
| jobs : | ||
| build : | ||
| runs-on : ubuntu-latest | ||
| steps : | ||
| - name : checkout | ||
| uses : actions/checkout/@v2 | ||
| with : | ||
| ref : ${{ github.head_ref }} | ||
|
|
||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install virtualenv | ||
|
|
||
| - name: setting up virtualenv | ||
| run : | | ||
| export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} | ||
| # --create_issues flag to create issue only in github action | ||
| # and not interfere with the CI | ||
| ./tools/dependency/release_dates.sh ./bazel/repository_locations.bzl --create_issues | ||
| ./tools/dependency/release_dates.sh ./api/bazel/repository_locations.bzl --create_issues |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.