Submodule Sync #24698
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: Submodule Sync | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '10 * * * *' | |
workflow_dispatch: | |
jobs: | |
submodule-sync: | |
name: Submodule Sync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Submodule Sync | |
uses: mheap/submodule-sync-action@a06903a4e38f042f6f52cc88d184ec1c930ee12d # v1.4.1 | |
with: | |
path: 'submodules/uBlock' | |
ref: master | |
pr_branch: automated-submodule-update | |
target_branch: master | |
pr_body: 'Review [brave/uBlock](https://github.com/brave/uBlock/pulls?q=is%3Apr+is%3Aclosed) for any recent format changes.' |