You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# runs when this repository's releases are modified
5
+
release:
6
+
# allows for manual dispatching of the workflow
7
+
workflow_dispatch:
8
+
9
+
jobs:
10
+
populate:
11
+
runs-on: ubuntu-latest
12
+
permissions:
13
+
# permits reading of releases and writing to the depot branch
14
+
contents: write
15
+
steps:
16
+
# where to find gh action and what version to use
17
+
- uses: LemLib/pros-depot@v0.1.0-beta.1
18
+
with:
19
+
# gives the github action the permissions specified above
20
+
token: ${{ github.token }}
21
+
# target repo for depots
22
+
repo: LemLib/fmtlib
23
+
# 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)
0 commit comments