Skip to content

Commit

Permalink
add PROS depot workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SizzinSeal committed Aug 9, 2024
1 parent a5eb6e3 commit 2b15b3d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/depot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Populate Depot json

on:
# runs when this repository's releases are modified
release:
# allows for manual dispatching of the workflow
workflow_dispatch:

jobs:
populate:
runs-on: ubuntu-latest
permissions:
# permits reading of releases and writing to the depot branch
contents: write
steps:
# where to find gh action and what version to use
- uses: LemLib/[email protected]
with:
# gives the github action the permissions specified above
token: ${{ github.token }}
# target repo for depots
repo: LemLib/hot-cold-asset
# where to read releases from (can be omitted if repo is also the repo from which to read releases from, but it doesn't sem to be working at the moment)
source-repo: LemLib/hot-cold-asset
# makes the json output human readable
readable-json: true

0 comments on commit 2b15b3d

Please sign in to comment.