Sync KAPLAYGROUND #8
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 KAPLAYGROUND" | |
on: | |
workflow_dispatch: | |
jobs: | |
sync: | |
permissions: write-all | |
name: "Sync KAPLAYGROUND" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
# Checkout the repository to the GitHub Actions runner | |
- run: git config --global --add url."[email protected]:".insteadOf "https://github.com/" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.BOT_TOKEN }} | |
repository: ${{ github.repository }} | |
submodules: true | |
# Update references | |
- name: Git Submodule Update | |
run: | | |
git pull --recurse-submodules | |
git submodule update --remote --recursive | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.BOT_TOKEN }} | |
commit-message: "chore: bump repo" | |
committer: Bag Bot[bot] <41898282+Bag-Bot[bot]@users.noreply.github.com> | |
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> | |
signoff: false | |
branch: example-patches | |
delete-branch: true | |
title: "chore: bump repo" | |
reviewers: lajbel | |
body: "ohhi" |