add laisiao bathroom heater #1735
Workflow file for this run
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: Check for duplicate profiles | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- 'drivers/**/profiles/*.yml' | |
env: | |
LUA_PATH: /home/runner/work/lua_libs/?.lua;./?.lua;/home/runner/work/lua_libs/?/init.lua;./?/init.lua | |
jobs: | |
find-duplicate-profiles: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Creates file "$/files.csv", among others | |
- id: file_changes | |
name: Gather file changes | |
uses: trilom/[email protected] | |
with: | |
output: ',' | |
fileOutput: ',' | |
# For verification | |
- name: Show files changed | |
run: | | |
cat $HOME/files.csv | |
- name: Run python script | |
run: | | |
python ./.github/scripts/check_duplicates.py | |
- name: Upload duplicate profile comment artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: duplicate_profile_comment | |
path: | | |
profile-comment-body.md | |
- run: echo ${{ github.event.number }} > pr_number.txt | |
- name: Upload PR info | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr_number | |
path: | | |
pr_number.txt |