-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add a workflow for expressing gratitude after the merge - Try to fix ZB FW value is 0 #10 - Fix CZ language typo Thanks to @leroyloren 🚀 #25 - Fix warning in HA about the missing attribute #15 - Renamed cs.json to cz.json to to comply with standard names accepted in i18next - Add Čeština translation. Thanks to @leroyloren 🚀 #19 - Fixed type error on login page Thanks to @mercenaruss 🚀 #18 - Add TubeZB config option. Thanks to @mercenaruss 🚀 #17
- Loading branch information
Showing
3 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Add merge comment | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
add-merge-comment: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged == true | ||
steps: | ||
- name: Add comment to merged pull request | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const pull_request = context.payload.pull_request; | ||
const author = pull_request.user.login; | ||
const issue_number = pull_request.number; | ||
const body = `Thanks @${author} 🚀`; | ||
await github.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issue_number, | ||
body: body | ||
}); | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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