Update gitstyring submodule #1943
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 gitstyring submodule | |
"on": | |
workflow_dispatch: | |
push: | |
paths: | |
- .github/workflows/update-gitstyring-submodule.yml | |
schedule: | |
- cron: "0 1 * * *" | |
repository_dispatch: | |
types: | |
- update-gitstyring-submodule | |
jobs: | |
update-gitstyring-submodule: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: technote-space/create-pr-action@v2 | |
with: | |
EXECUTE_COMMANDS: | | |
git submodule update --remote | |
COMMIT_EMAIL: 'bot@scs.community' | |
COMMIT_MESSAGE: | | |
chore: update gitstyring submodule | |
Signed-off-by: SCS Bot <bot@scs.community> | |
COMMIT_NAME: 'SCS Bot' | |
ONLY_DEFAULT_BRANCH: true | |
PR_BRANCH_NAME: 'update-gitstyring-submodule' | |
PR_BRANCH_PREFIX: 'chore/' | |
PR_TITLE: 'chore: update gitstyring submodule' |