File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Fast-follow
2+
3+ on :
4+ workflow_dispatch :
5+ schedule :
6+ # Scheduled to run every day at 8am UTC.
7+ - cron : " 0 8 * * *"
8+
9+ jobs :
10+ fast-follow :
11+ name : Runs fast-follow
12+ timeout-minutes : 20
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout js-to-lua
16+ uses : actions/checkout@v3
17+ with :
18+ path : js-to-lua-action
19+ repository : roblox/js-to-lua
20+
21+ - name : Checkout repository
22+ uses : actions/checkout@v3
23+ with :
24+ path : downstream-repository
25+
26+ - name : Set up GitHub identity
27+ run : |
28+ git config --global user.name github-actions
29+ git config --global user.email [email protected] 30+
31+ - name : Run Fast Follow
32+ uses : ./js-to-lua-action/.github/actions/fast-follow
33+ with :
34+ github-token : ${{secrets.GITHUB_TOKEN}}
35+ repo-path : downstream-repository
36+
37+ pr-description-cc-users : " @grilme99"
You can’t perform that action at this time.
0 commit comments