mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-23 07:59:59 -04:00
29 lines
652 B
YAML
29 lines
652 B
YAML
name: Update Org README
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.md
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update README
|
|
uses: dmnemec/copy_file_to_another_repo_action@main
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.REPOS_PAT }}
|
|
with:
|
|
source_file: 'README.md'
|
|
destination_repo: 'spacedriveapp/.github'
|
|
destination_folder: 'profile'
|
|
user_email: 'actions@spacedrive.app'
|
|
user_name: 'GH Actions'
|
|
commit_message: 'Update README'
|