Update go-e to 1.0.29 #429
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
# This workflow will triage pull requests and apply a label based on the | |
# paths that are modified in the pull request. | |
name: Stable Brand-New Info | |
# | |
# WARNING: | |
# ** Do NOT run untrusted code when using pull_request_target ** | |
# pull_request_target is needed as pull_request does not provide secrets and so no | |
# labeling of PR is possible. | |
# | |
on: | |
pull_request_target: | |
types: [labeled, unlabeled] | |
jobs: | |
stableBrandNewInfo: | |
name: stable brand new info | |
if: | | |
github.repository == 'ioBroker/ioBroker.repositories' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm i | |
- run: npm run stableBrandNewInfo | |
env: | |
OWN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |