Files
PocketMine-MP/.github/workflows/crowdin-download-cron-trigger.yml
Dylan T. e9eeaf9c61 Trigger RestrictedActions Crowdin using cron job
same reason for this as why we trigger the branch sync from here - we need to make sure the cron doesn't get disabled

RestrictedActions can do things this repo can't - the old workflow would've failed because GH Actions doesn't have pull_request write perms here (which we can't grant because it would also allow it to approve PRs)
2025-10-19 18:35:30 +01:00

33 lines
1.2 KiB
YAML

#Since GitHub automatically disables cron actions after 60 days of repo inactivity, we need the active repo (PM)
#to trigger the branch merge workflow explicitly. This avoids the need for TOS-violating actions which we previously
#used to keep the restricted action active, as the workflow depends on the activity of this repo anyway.
name: Trigger Crowdin download
on:
schedule:
- cron: "0 21 * * *"
workflow_dispatch: #for testing
jobs:
trigger:
name: Trigger Crowdin download RestrictedActions workflow
runs-on: ubuntu-22.04
steps:
- name: Generate access token
id: generate-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.RESTRICTED_ACTIONS_DISPATCH_ID }}
private-key: ${{ secrets.RESTRICTED_ACTIONS_DISPATCH_KEY }}
owner: ${{ github.repository_owner }}
repositories: RestrictedActions
- name: Dispatch branch sync restricted action
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ steps.generate-token.outputs.token }}
repository: ${{ github.repository_owner }}/RestrictedActions
event-type: pocketmine_mp_crowdin_download