Sync #142
This file contains 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
name: "Sync" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '6 4 * * *' # run once per day | |
# Sets permissions of the GITHUB_TOKEN to allow pushing via github token | |
permissions: | |
contents: write # allow git push | |
jobs: | |
call-org-workflow: | |
name: "Calling AXP workflow" | |
uses: AXP-OS/.github/.github/workflows/sync_upstream.yml@main | |
with: | |
remote-repo: Divested-Mobile/DivestOS-Build | |
remote-branch: master | |
local-repo: ${{ github.repository_owner }}/${{ github.event.repository.name }} | |
local-branch: axp | |
dryrun: false | |
secrets: inherit |