mirror of https://github.com/arendst/Tasmota.git
Create copycat_master.yml
This commit is contained in:
parent
80e405eaca
commit
bf9467d7b5
|
@ -0,0 +1,37 @@
|
|||
name: Copy_firmware_master
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
copycat:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: copycat tasmota
|
||||
uses: andstor/copycat-action@v3
|
||||
with:
|
||||
personal_token: ${{ secrets.API_TOKEN_GITHUB }}
|
||||
src_path: release-firmware/tasmota/.
|
||||
src_branch: master
|
||||
dst_path: firmware/release
|
||||
dst_owner: tasmota
|
||||
dst_branch: main
|
||||
dst_repo_name: install
|
||||
username: workflow
|
||||
commit_message: "Update from official release"
|
||||
copycat32:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: copycat tasmota32
|
||||
uses: andstor/copycat-action@v3
|
||||
with:
|
||||
personal_token: ${{ secrets.API_TOKEN_GITHUB }}
|
||||
src_path: release-firmware/tasmota32/.
|
||||
src_branch: main
|
||||
dst_path: firmware/release
|
||||
dst_owner: tasmota
|
||||
dst_branch: main
|
||||
dst_repo_name: install
|
||||
username: workflow
|
||||
commit_message: "Update from official release"
|
Loading…
Reference in New Issue