ci: add automated Decky plugin store update workflow#47
Open
Cliffback wants to merge 1 commit into
Open
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds a GitHub Actions workflow that automatically opens a draft PR against
SteamDeckHomebrew/decky-plugin-databasewhenever a new release is created, updating theLetMeReShadesubmodule pointer to the latest release tag.How it works
Release Pleaseworkflow completes successfully, or manually viaworkflow_dispatchwith a tag name input.decky-plugin-databaserepo under the PAT owner's account and syncs it with upstream.plugins/LetMeReShadesubmodule and commits the change.Setup steps required
1. One-time: Plugin transfer PR
The Decky store currently points to
itsOwen/LetMeReShade. Before this workflow can function, you must submit a plugin transfer PR todecky-plugin-databaseto change the submodule URL toCliffback/LetMeReShade.Use the
plugin_transfer.mdPR template. The itsowen README already acknowledges this fork as the maintained version.2. Create a
DECKY_STORE_PATsecretCreate a GitHub Personal Access Token (classic) with:
reposcope (full control of private repositories — needed to fork and push to the database repo)workflowscope (if the database repo has any workflow restrictions)Then add it as a repository secret named
DECKY_STORE_PAT:DECKY_STORE_PAT3. After each release
The workflow runs automatically. After it opens a draft PR on
decky-plugin-database, you still need to manually:Files changed
.github/workflows/decky-store-update.yml— new workflow