Skip to content

Commit

Permalink
Merge branch 'cosmos:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
duccas authored Jun 1, 2024
2 parents 7a69384 + 080fa73 commit 844ec26
Show file tree
Hide file tree
Showing 1,398 changed files with 92,754 additions and 12,454 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/sync_images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
on: [workflow_dispatch]
name: Sync Images
jobs:
sync_images:
name: Sync Images
runs-on: ubuntu-latest

defaults:
run:
shell: bash

steps:

- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 19.6.0

- name: Run code to Sync Images
working-directory: ./.github/workflows/utility
run: node sync_images.mjs

- name: Add Commit Push
uses: devops-infra/action-commit-push@master
with:
github_token: "${{ secrets.GITHUB_TOKEN }}"
add_timestamp: false
commit_prefix: "[AUTO]"
commit_message: "Sync Images"
force: false
target_branch: update/images

- name: Create A PR
uses: devops-infra/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_branch: update/images
target_branch: master
title: Sync Images
body: "**Automated pull request**"
old_string: "**THIS IS AN AUTOMATED UPDATE OF IMAGES**"
new_string: "** Automatic pull request**"
get_diff: true
ignore_users: "dependabot"
Loading

0 comments on commit 844ec26

Please sign in to comment.