Sync #154
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: '43 15 * * *' # adjust if needed | |
# 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: LineageOS/android_kernel_google_gs201 # <- remote repo name (e.g. LineageOS/foo) | |
remote-branch: lineage-20 # <- remote branch name | |
local-repo: ${{ github.repository_owner }}/${{ github.event.repository.name }} | |
local-branch: "axp-a13" | |
dryrun: true # <- set to false after a test run | |
secrets: inherit |