Add ADS1115 I2C bus2 support #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
if: github.repository == 'arendst/Tasmota' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Push I2CDevices.md to https://github.com/Tasmota/docs | |
uses: Jason2866/copy_file_to_another_repo_action@main | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
with: | |
source_file: 'I2CDEVICES.md' | |
destination_repo: 'Tasmota/docs' | |
destination_branch: 'development' | |
destination_folder: 'docs' | |
user_email: '[email protected]' | |
user_name: 'github-actions' | |
commit_message: 'I2CDevices.md changed' | |
- name: Push Builds.md to https://github.com/Tasmota/docs | |
uses: Jason2866/copy_file_to_another_repo_action@main | |
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: '[email protected]' | |
user_name: 'github-actions' | |
commit_message: 'Builds.md changed' |