Tasmota/.github/workflows/copy_change.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2021-10-09 20:14:20 +01:00
name: Copy to docs repo
on:
workflow_dispatch: # Manually start a workflow
push:
branches: development
paths:
- 'BUILDS.md'
- 'I2CDEVICES.md'
jobs:
copy_change:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-10-09 20:32:26 +01:00
- name: Push I2CDevices.md to https://github.com/Tasmota/docs
2021-10-16 18:43:16 +01:00
uses: Jason2866/copy_file_to_another_repo_action@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
2021-10-09 20:14:20 +01:00
source_file: 'I2CDEVICES.md'
destination_repo: 'Tasmota/docs'
destination_branch: 'development'
destination_folder: 'docs'
user_email: 'github-actions@github.com'
user_name: 'github-actions'
2021-10-09 20:32:26 +01:00
commit_message: 'I2CDevices.md changed'
- name: Push Builds.md to https://github.com/Tasmota/docs
2021-10-16 18:43:16 +01:00
uses: Jason2866/copy_file_to_another_repo_action@main
2021-10-09 20:32:26 +01:00
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source_file: 'BUILDS.md'
destination_repo: 'Tasmota/docs'
destination_branch: 'development'
destination_folder: 'docs'
user_email: 'github-actions@github.com'
user_name: 'github-actions'
commit_message: 'Builds.md changed'