Files
spacedrive/.github/workflows/org-readme.yml
2022-04-24 21:16:55 +01:00

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'