This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
Update gitcontrol submodule #3137
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: Update gitcontrol submodule | |
"on": | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/update-gitcontrol-submodule.yml | |
branches: | |
- main | |
schedule: | |
- cron: "0 8 * * *" | |
repository_dispatch: | |
types: | |
- update-gitcontrol-submodule | |
jobs: | |
update-gitcontrol-submodule: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: technote-space/create-pr-action@v2 | |
with: | |
EXECUTE_COMMANDS: | | |
git submodule update --remote | |
COMMIT_EMAIL: '[email protected]' | |
COMMIT_MESSAGE: | | |
chore: update gitcontrol submodule | |
Signed-off-by: OSISM Bot <[email protected]> | |
COMMIT_NAME: 'OSISM Bot' | |
ONLY_DEFAULT_BRANCH: true | |
PR_BRANCH_NAME: 'update-gitcontrol-submodule' | |
PR_BRANCH_PREFIX: 'chore/' | |
PR_TITLE: 'chore: update gitcontrol submodule' |