-
Notifications
You must be signed in to change notification settings - Fork 341
Automatically update latests #4819
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
Draft
quinna-h
wants to merge
80
commits into
master
Choose a base branch
from
quinna/test-outdated-integrations
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
80 commits
Select commit
Hold shift + click to select a range
f7615d2
check for outdated integrations
bengl 089cd42
pin everything
bengl 51dc82e
switch to a big json list of package max versions
bengl 66ec02f
run outdated checker a bunch of times per day
bengl 0959889
typo
bengl 4b19dca
fix: update latests.json
crysmags f1324e2
adding creating a pr from outdated integrations
crysmags 5c9750f
removing work to update modules
crysmags 7908633
adding ability to modify plugin yaml
crysmags d236fbb
reworking ci
crysmags 1a03d8f
reworking ci
crysmags 2cfc700
reworking ci
crysmags 5285e1d
reworking ci
crysmags 32875e1
reworking ci
crysmags 65982a8
reworking ci
crysmags 7fb60ab
reworking ci
crysmags 2f30dd4
reworking ci
crysmags 68d8266
reworking ci
crysmags a656651
reworking ci
crysmags ab0b02f
reworking ci
crysmags 8e87d98
reworking ci
crysmags 3b8def3
reworking ci
crysmags ef24842
reworking ci
crysmags 20ea671
reworking ci
crysmags a0cf258
reworking ci
crysmags b08b143
reworking updating script to create matrices for plugins
crysmags 6adc860
reworking ci
crysmags 4aaeb52
reworking ci
crysmags 2c6c42a
reworking ci
crysmags 19ee36e
reworking ci
crysmags 062e8fe
reworking ci
crysmags ce6faa3
reworking ci
crysmags dae192b
reworking ci
crysmags d07fd87
reworking ci
crysmags 6307f87
reworking ci
crysmags e54a2b6
reworking ci
crysmags 3ed8261
reworking ci
crysmags 738dd5c
reworking ci
crysmags 7d6cca6
reworking ci
crysmags 3ec75cd
adding script to create matrix
crysmags 482e701
adding script to create matrix
crysmags 3c65afb
adding script to create matrix
crysmags c1bd2eb
adding script to create matrix
crysmags f1565eb
adding script to create matrix
crysmags 5da8933
adding script to create matrix
crysmags 4860292
updating scripts
crysmags ebfb9b8
removing matrices.json
crysmags 1b20c5f
removing matrices.jn
crysmags 7f9decd
removing matrices.json
crysmags cd064f6
removing matrices.json
crysmags 6ee768c
removing matrices.json
crysmags d336692
removing matrices.json
crysmags 07b2634
updating versions json
crysmags 7835521
wip
quinna-h ff79479
wip
quinna-h 68263e8
wip
quinna-h 12a6e9d
wip
quinna-h 8efa626
wip
quinna-h d055df6
Change to use test packages
quinna-h c6e473b
Add logging
quinna-h 98f26d8
Add more logging
quinna-h 5c98619
wip
quinna-h d8a703e
add outdated integrations
quinna-h 4ed2c85
wip
quinna-h a800310
add integrations
quinna-h 013212f
add outdated?
quinna-h 7b7d060
wip
quinna-h 83d8583
attempt to write latest?
quinna-h 7120ae1
wip
quinna-h 521759c
expand and update
quinna-h f9913bf
update script
quinna-h 8aefad0
wip
quinna-h aac5908
wip
quinna-h a65eeba
wip
quinna-h add1936
wip
quinna-h 83820a3
wip
quinna-h e2ba009
update matrices.json?
quinna-h 31370dd
remove matrices.json
quinna-h c8d8b9e
wip
quinna-h 4a0d44c
add matrices.json back to make yarn happy
quinna-h 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: Outdated Integrations | ||
|
||
on: | ||
# schedule: | ||
# # Yes, this runs a _lot_. We don't want to be out of date for very long. | ||
# - cron: '37 12,16,22 * * *' | ||
push: | ||
branches: | ||
- 'quinna/test-outdated-integrations' # for testing | ||
|
||
jobs: | ||
outdated-integrations: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/node/setup | ||
|
||
- run: yarn install | ||
|
||
- run: yarn outdated-integrations | ||
|
||
- run: git diff | ||
# - name: Create Pull Request | ||
# id: pr | ||
# uses: peter-evans/create-pull-request@v6 | ||
# with: | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
# branch: "update_outdated_integrations" | ||
# commit-message: "fix: update latests.json" | ||
# delete-branch: true | ||
# base: master | ||
# title: "chore: update latests.json" | ||
# labels: changelog/no-changelog | ||
# body: |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟠 Code Vulnerability
Workflow depends on a GitHub actions pinned by tag (...read more)